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.
Asked
Active
Viewed 6,860 times
4
-
2Welcome to TeX.SX! Please provide a minimal compilable code example (MWE) to reproduce your current state. – TeXnician Oct 21 '17 at 09:49
-
I use \documentclass{article} and package tocloft. – ALPHA Oct 21 '17 at 09:56
1 Answers
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:
\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

