Graphics, Figures & Tables ⇒ List of Figures important problem
List of Figures important problem
Our university wants us to include source names which appear within the caption of the figure at text. But They do not want it to appear at the list of figures. So I have to put a shorter version of the figure caption at the list of figures.
%
\begin{figure}[htbp]
\centering
\includegraphics[width=2in]{blabla}
\caption{ABC (Source: X \& Y 2000 page:121)} \label{fig:blabla}
\end{figure}
It is shown in Figure~\ref{fig:blabla}
%
So latex automatically puts the name on the list. How will I change it?
Any help will be appreciated.
Best,
altgenn
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
List of Figures important problem
Code: Select all
\caption[List entry]{Full caption}
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: List of Figures important problem
Best,
altgenn