我改变了乳胶上的章节和小节的颜色,但是当编号达到 10 及以上时,第二位数字就会变回黑色。
这是我的代码:
\usepackage[dvipsnames,svgnames]{xcolor}
\usepackage{sectsty}
\renewcommand{\thefigure}{\arabic{section}.\arabic{figure}}
\renewcommand{\thetable}{\arabic{section}.\arabic{table}}
\definecolor{NavyBlue}{RGB}{47, 84, 150}
\renewcommand{\familydefault}{\sfdefault}
\renewcommand\thesection{\textcolor{NavyBlue}\arabic{section}}
\renewcommand\thesubsection{\thesection.\textcolor{NavyBlue}\arabic{subsection}}
\renewcommand\thesubsubsection{\thesubsection.\textcolor{NavyBlue}\arabic{subsubsection}}
\renewcommand\appendixpagename{\color{NavyBlue}{Appendices}}
但结果是,10 以后的第一个数字是蓝色(因此 1 是蓝色),而 0、1、...(因此第二个数字)是黑色。
我很感谢你的帮助
答案1
该命令\textcolor{color}{text}
接受两个参数:您必须使用花括号\arabic{section}
。
\renewcommand\thesection{\textcolor{NavyBlue}{\arabic{section}}}