包 tocloft 更改字体大小

包 tocloft 更改字体大小

所以我刚开始tocloft在报告中使用 LaTeX 来生成方程式列表。列表运行良好,可以满足我的需要,但目前唯一的问题是标题“方程式列表”的字体比其他标题“目录”、“图表列表”等的字体大得多...我该如何改变这种情况?

这是我所拥有的列表代码。

\usepackage{tocloft}
\newcommand{\listexamplename}{List of Equations}
\newlistof{example}{exp}{\listexamplename}
\newcommand{\example}[1]{%
\refstepcounter{example}
\par\noindent\text{Equation \theexample. #1}
\addcontentsline{exp}{example}
{\protect\numberline{\thechapter.\theexample}#1}\par}

答案1

正如在不同情况下所指出的那样

  1. https://tex.stackexchange.com/a/51900/4427

  2. https://tex.stackexchange.com/a/53806/4427

该包tocloft使用自己的方法来排版目录、图表和表格的标题;因此,如果章节标题的样式不同,则这三个章节的样式将与其他章节不匹配。

使用titles选项:

\usepackage[titles]{tocloft}

相关内容