moderncv(经典)由各种部分组成,如地址、电话、电子邮件……标题中的部分都是斜体的!如何将它们更改为正常字体?
所以,我想把上面的斜体数据改成普通字体
该模板可以在这里找到:http://www.latextemplates.com/template/moderncv-cv-and-cover-letter
答案1
如果您查看样式的定义classic
,您会发现其中包含moderncvstyleclassic.sty
控制文档元素外观的所有宏。对于字体,您会发现:
\renewcommand*{\namefont}{\fontsize{34}{36}\mdseries\upshape}
\renewcommand*{\titlefont}{\LARGE\mdseries\slshape}
\renewcommand*{\addressfont}{\small\mdseries\slshape}
\renewcommand*{\quotefont}{\large\slshape}
\renewcommand*{\sectionfont}{\Large\mdseries\upshape}
\renewcommand*{\subsectionfont}{\large\mdseries\upshape}
\renewcommand*{\hintfont}{}
你想改变的那个是\addressfont
如此
\renewcommand*{\addressfont}{\small\mdseries}
在你的序言中应该做你想做的事。