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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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