[Tex/LaTex] Remove Figure label in “List of Figures”

classicthesistable of contents

I'm using classicthesis of André Miede and I have the following list of figures:List of figures

I don't really like the sequence of Figure words (I think it's redundant) and I'm wondering if there's a way to keep only the numbering plus the caption.

Like this:

LIST OF FIGURES


2.1 caption
2.2 caption
2.3 caption
and so on…

Same thing with listings and tables. In chapters, instead, I think it's ok to have "Figure", "Listing" and so on.

I'm not handy with LaTeX so I don't know where to start and even if it's possible!

Best Answer

Add \renewcommand{\cftfigpresnum}{} to your code:

\documentclass{book}
\usepackage[floatperchapter]{classicthesis}
\renewcommand{\cftfigpresnum}{}
\begin{document}
  \listoffigures
  \chapter{Chapter}
  \begin{figure}
    \caption{A figure}
  \end{figure}
  \chapter{Chapter}
  \begin{figure}
    \caption{A figure}
  \end{figure}
\end{document}

enter image description here