Created
April 16, 2016 02:19
-
-
Save ibogun/31fc0a677ec2a01a9c6de97aedae777e to your computer and use it in GitHub Desktop.
Bibitem magic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% To generate bibitem bbl file | |
\documentclass{article} | |
\begin{document} | |
\nocite{*} | |
\bibliographystyle{plain} | |
\bibliography{biblio} | |
\end{document} | |
where biblio is the name of your .bib file. | |
Then run | |
pdflatex test | |
bibtex test | |
pdflatex test | |
pdflatex test | |
% to export only cited papers: | |
bibexport -o extracted.bib myarticle.aux |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment