我正在使用文档类报告,我想更改章节标题的字体大小。我定义了以下命令来更改标题字体大小
\newcommand{\chaptersize}{\fontsize{25}{12}\selectfont}
它确实会改变标题的字体大小,但它也会改变目录中章节标题的字体大小。请建议如何避免目录中的更改。
答案1
报告中的章节标题定义为
\def\@makechapterhead#1{%
\vspace*{50\p@}%
{\parindent \z@ \raggedright \normalfont
\ifnum \c@secnumdepth >\m@ne
\huge\bfseries \@chapapp\space \thechapter
\par\nobreak
\vskip 20\p@
\fi
\interlinepenalty\@M
\Huge \bfseries #1\par\nobreak
\vskip 40\p@
}}
因此,您可以根据需要重新定义(在\makeatletter
\makeatother
)变化\Huge
和之间。\huge