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.
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
- 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: 10330
- 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.