Deedy 简历;如何取消标题中的姓氏

Deedy 简历;如何取消标题中的姓氏

您将如何格式化上面我圈出的标题的姓氏,使其不加粗?例子

答案1

在文档的序言中添加以下内容将导致姓氏以与名字相同的字体/颜色显示:

\renewcommand{\namesection}[3]{ % Defines the command for the main heading
\centering{ % Center the name
\fontsize{40pt}{60pt} % Font size
\fontspec[Path = fonts/lato/]{Lato-Hai}\selectfont #1 % First name font
\fontspec[Path = fonts/lato/]{Lato-Hai}\selectfont #2 % Last name font
} \\[5pt] % Whitespace between the name and contact information
\centering{ % Center the contact information
\color{headings} % Use the headings color
\fontspec[Path = fonts/raleway/]{Raleway-Medium}\fontsize{11pt}{14pt}\selectfont #3} % Contact information font
\noindent\makebox[\linewidth]{\color{headings}\rule{\paperwidth}{0.4pt}} % Horizontal rule
\vspace{-5pt} % Reduce whitespace after the rule slightly
} 

答案2

在此处输入图片描述

  1. 您需要打开 cls 文件并搜索 namesection
  2. 交换字体名称 Lig -> Hai 使第一个单词变粗,第二个单词变正常。
  3. 如果希望两个词都正常,请使用“Hai”而不是“Lig”。

%\fontspec[Path = fonts/lato/]{Lato-Lig}\selectfont #1 %\fontspec[Path = fonts/lato/]{Lato-Hai}\selectfont #2

相关内容