하위 섹션 머리 색깔

하위 섹션 머리 색깔

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}

여기에 이미지 설명을 입력하세요

관련 정보