之前有一些帖子展示了如何添加 moderncv 文档的章节编号。
例如给出如下代码:
\newcounter{secnumber}
\renewcommand\sectionstyle[1]{{%
\refstepcounter{secnumber}%
\sectionfont
\textcolor{color1}{\thesecnumber~#1}%
}}
这确实能给我提供章节编号。我的问题是如何(可能对上述代码进行哪些更改)将这些章节编号设置为字母而不是数字?
答案1
您可以插入指令
\renewcommand\thesecnumber{\Alph{secnumber}}
之后立马
\newcounter{secnumber}
获得大写字母符号——“A”、“B”等——而不是阿拉伯数字。如果您想要小写字母符号,请使用\alph
而不是\Alph
。