How can I create a List of Figures which has captions and page numbers, but no figure numbers?
Asked
Active
Viewed 4,069 times
4
2 Answers
10
The easiest answer is
\begingroup
\renewcommand\numberline[1]{}
\listoffigures
\endgroup
but of course this won't suppress the figure numbers in the captions to the figures.
A more complicated setting with tocloft that allows to better control the appearance is
\usepackage{tocloft}
\renewcommand\cftfigpresnum{\setbox0=\hbox\bgroup}
\renewcommand\cftfigaftersnum{\egroup}
\setlength\cftfignumwidth{0pt}
\setlength\cftfigindent{0pt}
In this way the captions will start flush with the left margin.
egreg
- 1,121,712
-
That may be too tricky for newbies to use
\setbox0=\hbox\bgroup...\egroup. So is my previous answer\font\dummyfont=dummy...\dummyfont. – Leo Liu Jul 22 '11 at 13:16 -
-
9
As is said by Marco, the easiest method may be to use caption package:
\usepackage[listformat=empty]{caption}
Also, titletoc or tocloft package will help, if you use them to modify contents format.
Leo Liu
- 77,365
caption. – Marco Daniel Jul 22 '11 at 13:03