Graphics, Figures & Tables ⇒ list of figures
list of figures
Figure label page number
figure 1 10
figure 2 20
My purpose is to be able to have a file with figures and page number of them, every time I make changes to my main tex file.
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
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
list of figures
list of figures
list of figures
Code: Select all
\select@language {english}
\addvspace {10\p@ }
\addvspace {10\p@ }
\contentsline {figure}{\numberline {2.1}{\ignorespaces A test}}{7}{figure.2.1}
\addvspace {10\p@ }
\contentsline {figure}{\numberline {3.1}{\ignorespaces A test2}}{11}{figure.3.1}
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
list of figures
Code: Select all
\documentclass{article}
\usepackage[english]{babel}
\let\addvspace\vspace
\begin{document}
\makeatletter
\input{yourfilename.lof}
\end{document}
list of figures
Thanks again for your help.
-
- Posts: 1
- Joined: Fri Oct 19, 2018 5:00 pm
list of figures
\let\addvspace\vspace
This error message cost me more than 3 years searching for a solution of the problem. One could click it away but this still was frustrating.
I don't understand what this line really stands for but it does the trick. I eventually got rid of the enervating
\addvspace {10\p@}
which didn't give any hint of it's origin.