Created
August 5, 2019 20:55
-
-
Save sampollard/ce3d23af89a87ed422d8f42303ab3b8a to your computer and use it in GitHub Desktop.
Print out only citations given a .bib file
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
% Only generate citations. Build with latexmk -pdf | |
\documentclass{article} | |
\begin{document} | |
\nocite{*} | |
\bibliographystyle{plain} | |
\bibliography{mybib} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment