[Tex/LaTex] List of figures without figure numbers

numberingtable of contents

How can I create a List of Figures which has captions and page numbers, but no figure numbers?

Best Answer

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.