Last Updated: February 25, 2016
·
497
· modulsam

Make .bib references appear (even the uncited ones).

If you want to make references (from a .bib file) appear even if they aren't cited in your latex file. You can use the \nocite{*} statement.

Thus, you can write in your latex file :

\bibliography{NameOfMyBibFile}
\nocite{*}

Saw it here : http://aquaryus.wordpress.com/2009/04/09/latex-show-bibliography-references-without-citing/