使用 quotchap 包对章节标题进行彩色显示

使用 quotchap 包对章节标题进行彩色显示

我已经使用更改了章节编号

\definecolor{chaptergrey}{}

但肯定也有办法更改章节标题。有人知道怎么做吗?

答案1

简短的介绍quotchap.sty告诉我重新定义\sectfont(默认情况下仅包含\relax):

\documentclass{book}
\usepackage{xcolor}
\usepackage{quotchap}
\colorlet{chaptergrey}{green}
\renewcommand*\sectfont{\color{blue}}
\begin{document}
\chapter{Test} % green number, blue text
\section{Test} % all black
\subsection{Test} % all black
\end{document}

相关内容