Skip to content

Instantly share code, notes, and snippets.

@ibogun
Created April 16, 2016 02:19
Show Gist options
  • Save ibogun/31fc0a677ec2a01a9c6de97aedae777e to your computer and use it in GitHub Desktop.
Save ibogun/31fc0a677ec2a01a9c6de97aedae777e to your computer and use it in GitHub Desktop.
Bibitem magic
% 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