General ⇒ BibTex - showing all even if they are not referenced?
BibTex - showing all even if they are not referenced?
In my bilbiography I want to include all the things in the bib file, including things I haven't referenced in my document.
How do I do this?
Is there specific style file for this? I'm currently using is-unsrt.bst
Thanks
IJC
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
BibTex - showing all even if they are not referenced?
Code: Select all
\nocite
BibTex - showing all even if they are not referenced?
Code: Select all
...
\nocite{*}
\bibliographystyle{is-unsrt}
\bibliography{MainReport}
\end{document}
Thanks again gmedina

BibTex - showing all even if they are not referenced?
[BibTeX] MainReport.aux => MainReport.bbl (bibtex)
[BibTeX] finished with exit status 2
BibTex - showing all even if they are not referenced?
Code: Select all
\nocite{key1,key2,...}
The special variant
Code: Select all
\nocite{*}
Re: BibTex - showing all even if they are not referenced?
\nocite{key1}
whether it's at the top or the bottom of the document...
But
\nocite{*}
doesn't work at the top or bottom...
I think I will just list the keys.
Thanks gmedina