chapter
我可以改变、section
和头部的颜色subsection
,但这种方式不会改变头部的颜色subsection*
。以下是示例:
\documentclass[a4paper,12pt,twoside]{book}
\usepackage{xcolor}
\usepackage{sectsty}
\chapterfont{\color{red}}
\sectionfont{\color{red}}
\subsectionfont{\color{red}}
\begin{document}
\chapter{My chapter}
\section{My section}
We will prove ..
\subsection{My subsection}
The sequence is a list..
\subsubsection*{Star Subsection}
We can ...
\end{document}
输出为
感谢您的帮助。
答案1
尽管有这个名字,但您的“星型子部分”并不是一个子部分,而是一个子部分子部分。因此,要更改颜色,您需要\subsubsectionfont{\color{red}}
(或仅使用\allsectionsfont{\color{red}}
一次更改所有标题):
\documentclass[a4paper,12pt,twoside]{book}
\usepackage{xcolor}
\usepackage{sectsty}
\chapterfont{\color{red}}
\sectionfont{\color{red}}
\subsectionfont{\color{red}}
\subsubsectionfont{\color{red}}
%\allsectionsfont{\color{red}}
\begin{document}
\chapter{My chapter}
\section{My section}
We will prove ..
\subsection{My subsection}
The sequence is a list..
\subsubsection*{Star Subsection}
We can ...
\end{document}