GeneralStart Bibliography Numbering AFTER \listoffigures

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
cappy
Posts: 2
Joined: Tue Mar 18, 2008 10:00 pm

Start Bibliography Numbering AFTER \listoffigures

Post by cappy »

I am using \bibliographystyle{unsrt} such that my bibliography is numbered in the order that my references are cited in the text.

In many of my figure captions, I've cited the source of the figures. At the beginning of my document I have the \listoffigures command. Since my figure list comes before my 1st chapter, my bibliography starts with my first reference that appears in my Figure list. I want my bibliography numbering to start in chapter 1. How do I suppress the bibliography numbering until I start chapter 1?

Thanks.

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

Juanjo
Posts: 657
Joined: Sat Jan 27, 2007 12:46 am

Re: Start Bibliography Numbering AFTER \listoffigures

Post by Juanjo »

A simple solution: while you are writing drafts of your document, put \listoffigures at the end of the tex file or just coment out that line. So, every time you use BibTeX to generate the bibliography (i.e. the bbl file), the references will be in the right order. Once you have finished to add or change references, run BibTeX for the last time. You get the definitive bbl file. Then you can move \listoffigures to its right place. All the subsequent compilations will yield the correct document.
cappy
Posts: 2
Joined: Tue Mar 18, 2008 10:00 pm

Re: Start Bibliography Numbering AFTER \listoffigures

Post by cappy »

Thanks. That worked.
Post Reply