更改特定章节的字体大小

更改特定章节的字体大小

我已经设置了章节标题的选项,这些选项都很好。但是,对于一个特定的章节标题(作者声明),我希望标题比之前的所有章节标题都小。是否可以更改一个特定章节标题的字体大小,甚至位置?

\chapter*{Statement of authorship}

答案1

您可以titlesec在组内使用并执行此操作,以便更改仅应用于章节

\bgroup
\titleformat{\chapter}{\filcenter}{}{0pt}{\normalfont\large\bfseries}  %% remove \filcenter if not needed
\titlespacing*{\chapter}{0pt}{0pt}{20pt}
\chapter*{Statement of authorship}
\egroup

如果章节位于末尾,则无需\egroup\bgroup。还将\filcenter章节置于中间。更改\large为您喜欢的任何内容。

\documentclass[11pt]{report}
\usepackage{titlesec}

\begin{document}

\chapter{Some chapter}
\bgroup
\titleformat{\chapter}{\filcenter}{}{0pt}{\normalfont\large\bfseries}  %% remove \filcenter if not needed
\titlespacing*{\chapter}{0pt}{0pt}{20pt}
\chapter*{Statement of authorship}
\egroup
\chapter{Some chapter}
\end{document}

在此处输入图片描述

答案2

如果你只需要像更改字体大小这样简单的操作,那么你可以将其添加到\chapter*{}命令中。虽然不太美观,但很简单:

% arara: pdflatex

\documentclass{report}
\pdfpageheight 9cm 

\begin{document}
\chapter*{normal}
\chapter*{\hspace{3cm}\small changed}
\chapter*{normal again}
\end{document}

在此处输入图片描述


注意:当您使用无星号标题时,请不要忘记这样做,\chapter[changed]{\hspace{3cm}\small changed}以便将标题放在目录中

相关内容