How to align the captions in the list of figures ?
I have the following code:
\usepackage[subfigure]{tocloft}
\renewcommand*\cftfigpresnum{Figure~}
\settowidth{\cftfignumwidth}{\cftfigpresnum}
\renewcommand{\cftfigaftersnumb}{\quad~~}
This code produces:
Figure 1 xxxxxxxxxxxx....34
Figure 2 yyyyyyyyyyyyyyyyy
yyyyy.........................35
I would like to change to look like this:
Figure 1 xxxxxxxxxxxx....34
Figure 2 yyyyyyyyyyyyyyyyy
yyyyy......................35
The problem I want to solve is to remove any "YYY" below the term "Figure 2" and align up with the above caption just when it starts.
My code should be:
\newlength{\mylen} \renewcommand*\cftfigpresnum{Figure~} \settowidth{\mylen}{\cftfigpresnum\cftfigaftersnum} \addtolength{\cftfignumwidth}{\mylen}
Thanks, Fred
– user7806 Sep 15 '11 at 09:26