LyX ⇒ Removing captions from LoF
Removing captions from LoF
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
Removing captions from LoF
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Removing captions from LoF
Removing captions from LoF
Code: Select all
\documentclass{book}
\usepackage{caption}
\newcommand\mycaption[1]{%
\caption[\figurename\ \thefigure]{#1}}
\begin{document}
\listoffigures
\begin{figure}[!ht]
\centering
\rule{4cm}{2cm}
\mycaption{Test figure 1.}
\label{fig:test1}
\end{figure}
\begin{figure}[!ht]
\centering
\rule{4cm}{2cm}
\mycaption{Test figure 2.}
\label{fig:test2}
\end{figure}
\begin{figure}[!ht]
\centering
\rule{4cm}{2cm}
\mycaption{Test figure 3.}
\label{fig:test3}
\end{figure}
\end{document}