我为 moderncv 制作了如下所示的颜色样式。color1 用于所有部分和子部分,我想对子部分使用新添加的 color3 而不是 color1。我该怎么做?
\begin{filecontents*}{moderncvcolorteal.sty}
% start of file 'moderncvcolorteal.sty'.
% identification
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{moderncvcolorteal}[2013/02/09 v1.3.0 modern curriculum vitae and letter color scheme: teal]
% color scheme definition
\definecolor{color0}{rgb}{0,0,0} % black
\definecolor{color1}{rgb}{0,0.5,0.5} % teal
\definecolor{color2}{rgb}{0.45,0.45,0.45} % dark grey
\definecolor{color3}{rgb}{0.56,0,0.13} % burgundy
\endinput
% end of file 'moderncvcolorteal.sty'.
\end{filecontents*}
答案1
颜色\subsection
在相应的文件中定义moderncvstyle*.sty
。
使用例如
\renewcommand*{\subsectionstyle}[1]{{\subsectionfont\textcolor{color3}{#1}}}
将子部分颜色更改为color3
。