我想将 Computer Modern 字体(据我所知,它是文章类的默认字体)设置为 twentysecondcv 模板中的默认字体。相关文件可以从以下位置下载这里。就我个人而言,我只在twentyseconds.cls
和Twenty-Seconds_cv.tex
文件中工作。我怀疑相关更改必须在中进行,twentyseconds.cls
但我不确定。
有人能帮我吗?
答案1
看起来您所指的类文件正在加载 ClearSans 包并将其设置为默认字体。
注释.CLS 文件中的行将禁用它,您最终将再次使用 Computer Modern。
\RequirePackage[sfdefault]{ClearSans}
但是,您可以使用以下方法恢复 Computer Modern 默认设置(假设您使用的是 pdfLaTeX 而不是fontspec
):
\renewcommand\rmdefault{cmr}
\renewcommand\sfdefault{cmss}
\renewcommand\ttdefault{cmtt}
或者如果你使用 XeLaTeX 或 LuaLaTeX(默认为 Latin Modern,而不是 Computer Modern)
\renewcommand\rmdefault{lmr}
\renewcommand\sfdefault{lmss}
\renewcommand\ttdefault{lmtt}