Hi there,
Is it possible to have a silent caption on a figure?
Basically, my figure already includes its caption inside the figure file, so that I don't want to add another one with Latex. However, I do want the figure to appear in the list of figures! Is there any way to do that?
Thanks!
Winnie
Graphics, Figures & Tables ⇒ Figure in list of figures but without caption
NEW: TikZ book now 40% off at Amazon.com for a short time.
Figure in list of figures but without caption
Hi,
you can use the \addcontentsline command; an example (I used black rectangles to simulate actual figures, but of course you can use the standard \includegraphics command provided the graphicx package has been loaded):
Even though I showed how to achieve what you requested, I would suggest you to include only the figure, if possible, and produce its caption using the standard \caption command to avoid font inconsistencies.
you can use the \addcontentsline command; an example (I used black rectangles to simulate actual figures, but of course you can use the standard \includegraphics command provided the graphicx package has been loaded):
Code: Select all
\documentclass{book}
\begin{document}
\listoffigures
\begin{figure}[!ht]
\centering
\rule{2cm}{2cm}
\caption{A black rectangle with regular caption.}
\end{figure}
\begin{figure}[!ht]
\centering
\stepcounter{figure}
\rule{2cm}{2cm}
\addcontentsline{lof}{figure}{\protect\makebox[2.3em][l]{\thefigure}A black rectangle without caption but listed in the lof.}
\end{figure}
\begin{figure}[!ht]
\centering
\rule{2cm}{2cm}
\caption{Another black rectangle with regular caption.}
\end{figure}
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: Figure in list of figures but without caption
Thanks a lot, that's really helpful!
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Figure in list of figures but without caption
Now that the problem seems to be solved, please be so kind and mark the topic accordingly as described in Section 3 of the Board Rules.
Best regards
Thorsten
Best regards
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10