Generalpdf showing only 10 books of the bibtex bibliography

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
nicr
Posts: 16
Joined: Mon Apr 28, 2008 1:30 pm

pdf showing only 10 books of the bibtex bibliography

Post by nicr »

Hello, ;)

My bibtex file has approximately 15 books but only 10 of them are
shown in the pdf file. Please what could I do in order to have all of
them shown?
\bibliographystyle{plain}
\bibliography{bibs/references}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

pdf showing only 10 books of the bibtex bibliography

Post by gmedina »

Maybe you are citing only 10 items in your document. To make all items appear, use \nocite{*} in the body of your document.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

pdf showing only 10 books of the bibtex bibliography

Post by localghost »

A similar answer has already been given in your cross posting. As a matter of fairness, please mention next time that you are doing so.


Best regards
Thorsten¹
nicr
Posts: 16
Joined: Mon Apr 28, 2008 1:30 pm

Re: pdf showing only 10 books of the bibtex bibliography

Post by nicr »

Thank you for answering, but I do cite more then 10 books.
lnewton
Posts: 17
Joined: Mon Mar 31, 2008 3:01 pm

Re: pdf showing only 10 books of the bibtex bibliography

Post by lnewton »

Something that I think can happen is if there is a mistake in the
argument to \bibliography{}, bibtex will stop processing at that
point. Say for instance I have the line:

\bibliography{../abc,../def,../ghi,../jkl}

Everything is fine with ../abc.bib, but ../def.bib is missing
or perhaps seriously flawed. bibtex will enter the ones it
has found, and stop, so those from ../ghi.bib and ../jkl.bib
do not appear in the output either.

I don't know if that's the case in your document, but it's
something to look at. Also, BibTeX files seem to me to be
notorously sensitive to booboos (rightfully so, I'm sure),
so if you forget a comma or have a duplicate key or something,
things just don't work right.

Hope that provides some sort of clue.
Lynn
Post Reply