特定标题使用不同的字体

特定标题使用不同的字体

我使用该titlesec包来定义我的标题设计,如下所示。

\titleformat{\chapter}[display]
  {\normalfont\sffamily\huge\bfseries}
  {\chaptertitlename\ \thechapter}{5pt}
  {\Huge}
\titlespacing*{\chapter}{0pt}{0pt}{10pt}
\titleformat{\section}
  {\normalfont\sffamily\Large\bfseries}
  {\thesection}{1em}{}
\titleformat{\subsection}
  {\normalfont\sffamily\large\bfseries}
  {\thesubsection}{1em}{}

是否可以针对特定案例更改格式?假设第 1 章采用完全不同的格式。

答案1

解决方案

\begingroup
\titleformat{\chapter}[display]
   {\normalfont\sffamily\huge\bfseries}
   {\chaptertitlename\ \thechapter}{5pt}{\Huge}
   \titlespacing*{\chapter}{0pt}{0pt}{10pt}
\chapter{chapter 1}
\endgroup

相关内容