General ⇒ Formatting listoffigures
Formatting listoffigures
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Formatting listoffigures
tocloft could be an option. Read the package documentation or use the "Search" functionality of this board to find the explicit answer.
Formatting listoffigures
To add 'figure' before number in list of figures:
Code: Select all
\renewcommand{\cftfignumwidth}{6em}
\renewcommand{\cftfigpresnum}{Figure }
\listoffigures
- Attachments
-
- Pic of extra space
- space.png (34.32 KiB) Viewed 22160 times
Re: Formatting listoffigures
Formatting listoffigures
Code: Select all
% List of figures and tables
\clearpage
\renewcommand{\listfigurename}{\begin{center} \normalsize \textbf{LIST OF FIGURES} \end{center}}
\renewcommand{\cftfignumwidth}{6em}
\renewcommand{\cftfigpresnum}{Figure }
\renewcommand{\cftbeforefigskip}{0em}
\renewcommand{\cftbeforechapskip}{0em}
\renewcommand{\cftfigafterpnum}{}
\addcontentsline{toc}{section}{LIST OF FIGURES}
\listoffigures
Formatting listoffigures
Code: Select all
\makeatletter
\def\@chapter[#1]#2{\ifnum \c@secnumdepth >\m@ne
\refstepcounter{chapter}%
\typeout{\@chapapp\space\thechapter.}%
\addcontentsline{toc}{chapter}%
{\protect\numberline{\thechapter}#1}%
\else
\addcontentsline{toc}{chapter}{#1}%
\fi
\chaptermark{#1}%
\if@twocolumn
\@topnewpage[\@makechapterhead{#2}]%
\else
\@makechapterhead{#2}%
\@afterheading
\fi}
\makeatother