如何定义listofalgorithms、listoffigures和listoftables的标题大小?

如何定义listofalgorithms、listoffigures和listoftables的标题大小?

我有一个 LaTex 代码定义如下:

\documentclass[a4paper]{paper}
\begin{document}

\section*{List of Illustrations}

\listofalgorithms
\listoffigures
\listoftables

\clearpage
\end{document}

但基本上,LoF、LoT 和 LoA 的标题与我的章节标题“插图列表”一样大。有没有办法将它们的标题大小更改为与子章节标题大小相同的大小?

答案1

关于LoF和Lot使用tocloft包。

\usepackage{tocloft}
\renewcommand{\cftloftitlefont}{...}
\renewcommand{\cftlottitlefont}{...}

...您对 LoF 和 LoT 标题所用字体(大小)的指定在哪里。如何执行相同操作\listofalgorithms取决于您(或其他人)。

我真的不明白你为什么把 放在\listof...\section*{List of Illustrations}。Afigure可能是 an illustration,但我不能将 atable或 analgorithm视为插图,对我来说,它传达了图形的概念,例如肖像、地图、绘画或类似的东西。

相关内容