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
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- 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: 10360
- 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