3

I have modified my list of figures so that it includes Fig. figure number before each caption in List of Figures. This done by using the following code.

{%
\let\oldnumberline\numberline%
\renewcommand{\numberline}{\tablename~\oldnumberline}%
\listoftables%
}

However, I am not able to align figure caption which extends to second line. What should be done to align the multi-line figure caption in list of figures.

S.Dev
  • 75

1 Answers1

0

I am able to get alignment using this code

\contentsmargin{1cm}
\titlecontents{figure}
  [2.5cm]
  {}
  {\makebox[0pt][r]{%
      \makebox[2.5cm][l]{Figure~\thecontentslabel}%
    }%
  }
  {\hspace{-2.5cm}}
  {\titlerule*[6pt]{}\contentspage}

However, in some cases the page number comes down

S.Dev
  • 75