4

I am currently writing my thesis. I would like to change format of list of figures. I need my list of figures to be numbered in parentheses, i.e.

Example

ALPHA
  • 258

1 Answers1

8

Since you're already loading the tocloft package, I suggest you provide the following code in the preamble:

\usepackage{tocloft}
\renewcommand\cftloftitlefont{\mdseries\Large} % optional
\renewcommand\cftfigindent{0pt}  % no indentation
\renewcommand\cftfigpresnum{(}   % prefix "(" before figure number
\renewcommand\cftfigaftersnum{)} % affix ")" after figure number

A full MWE:

enter image description here

\documentclass{article}
\usepackage{newtxtext,newtxmath} % optional -- for Times-like font

\usepackage{tocloft}
\renewcommand\cftloftitlefont{\mdseries\Large} % optional
\renewcommand\cftfigindent{0pt}
\renewcommand\cftfigpresnum{(}
\renewcommand\cftfigaftersnum{)}

\begin{document}
\listoffigures

\clearpage
\begin{figure}[h!]
\caption{Three-dimensional graph}
\end{figure}

\end{document}
Mico
  • 506,678