如何更改图表列表的样式,使其与下图所示的目录相同?我正在使用\documentclass{article}
代码创建图表列表\listoffigure
。
答案1
lof
类似这样的外观可以通过包中的宏toc
来实现。基本上,这只需要以下两个命令:\cftfig....
tocloft
\cftfigindent
-- 图形条目的缩进\cftfigfont
-- 字体规范
如果lof
应该分成几部分,请看我的这个答案:
按部分列出的表格(或图表)列表 - LaTeX
\documentclass[12pt]{article}
\usepackage{caption}%
\usepackage{tocloft}
\renewcommand{\cftfigindent}{0pt}
\renewcommand{\cftfigfont}{\bfseries}
\begin{document}
\tableofcontents
\listoffigures
\section{First -- with no pagebreak}
\begin{figure}
\caption{Dummyfigure 1}
\end{figure}
\section{Second with pagebreak}%
\begin{figure}
\caption{Dummyfigure 2}
\end{figure}
\end{document}