我已经设置了章节标题的选项,这些选项都很好。但是,对于一个特定的章节标题(作者声明),我希望标题比之前的所有章节标题都小。是否可以更改一个特定章节标题的字体大小,甚至位置?
\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}
以便将标题放在目录中