Hi All,
I have the same issue that
AndreiR had(has?). In the following MWE I would like to have my entries in the list of figures formatted as such:
Figure 1: Caption....... 1
and not as they currently appear where the caption of the figure is in bold as well.
e.g.
Figure 1: Caption....... 1
Here is the relevant MWE
Code: Select all
\documentclass[letterpaper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{tocloft}
\usepackage{babel}
\begin{document}
\renewcommand\cftfigpresnum{Figure }
\renewcommand\cftfigaftersnum{:}
\renewcommand\cftfigfont{\bfseries}
\newlength{\mylen}
\settowidth{\mylen}{\bfseries\cftfigpresnum\cftfigaftersnum}
\setlength{\cftfignumwidth}{\mylen}
\addtolength{\cftfignumwidth}{1em}
\listoffigures
\begin{figure}
\caption{Caption}
\end{figure}
\end{document}