将部分命令涂成蓝色的好方法是什么?这就是我所做的
\newcommand{\sec}[1]{\section{\textcolor{blue}{#1}}}
\newcommand{\subsec}[1]{\subsection{\textcolor{blue}{#1}}}
\newcommand{\subsubsec}[1]{\subsubsection{\textcolor{blue}{#1}}}
也许使用\textcolor
并不合适,因为乳胶切片允许数学环境。
答案1
最简单的方法是使用该titlesec
包 – 明确加载该包并添加到您的序言中:
\titleformat*{\section}{\color{blue}}
\titleformat*{\subsection}{\color{blue}}
\titleformat*{\subsubsection}{\color{blue}}