quotchap:更改格式和数字大小

quotchap:更改格式和数字大小

我正在使用该quotchap软件包格式化文档中的章节标题。我知道如何更改章节标题的默认字体大小,但不知道如何将其加粗。我还想知道是否可以更改章节编号的大小。

答案1

重新定义\sectfont\chapnumfont宏。

\documentclass{book}

\usepackage{quotchap}

\makeatletter
\renewcommand*{\sectfont}{\bfseries}
\renewcommand*{\chapnumfont}{%
  \usefont{T1}{\@defaultcnfont}{b}{n}\fontsize{120}{150}\selectfont% Default: 100/130
  \color{chaptergrey}%
}
\makeatother

\begin{document}

\chapter{foo}

Some text.

\end{document}

相关内容