Graphics, Figures & Tables ⇒ Figures do not start at 1
-
- Posts: 1
- Joined: Mon Jul 17, 2017 6:03 pm
Figures do not start at 1
Pliz help me, I am stuck. I am writting a disserattion and i am using the book class. i am using lyx version 2.0.0
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
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Figures do not start at 1
welcome to the forum!
Since that numbering is not the default, we need to now something about your document settings.
Can you do a pdfLaTeX export from LyX? It gives you a .tex file. You could post it here as attachment: the link "Attachments" is below the text edit field, when writing a post. It's probably enough to post just the part until \begin{document}, so you don't need to share the actual text content with us.
Thanks,
Stefan
Figures do not start at 1
\cite
commands within the argument of a figure's \caption
command, hence those citations first appear in the list of figures (if the LOF is placed before the main body of the text).Should that be the case, I'd use
caption
's optional argument to get rid of those citations in the LOF.
Code: Select all
\caption[figure caption without cite command]{figure caption with possible cite command}
KR
Rainer
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Figures do not start at 1
you may be right, I just thought he meant references done by
\ref
.Stefan