包 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}

相關內容