我已经使用更改了章节编号
\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}