更改 moderncv 部分内的字体粗细

更改 moderncv 部分内的字体粗细

我想更改部分内的字体粗细,但现在我需要添加\textbf{}所有字体。有没有更简单的方法可以对整个文档实现此目的?

\documentclass[11pt, letterpaper, sans]{moderncv}
\moderncvstyle{classic}
\moderncvcolor{blue}
\usepackage{fontawesome}
\usepackage[scale=0.85, top=2cm, bottom=2cm]{geometry}
\setlength{\hintscolumnwidth}{2.6cm}
\usepackage{tikz}
\usepackage{mathptmx}
\usepackage[11pt]{moresize}

\firstname{First}
\familyname{Last}
\email{[email protected]}

\begin{document}

\makecvtitle

\section{Education}

\section{\textbf{Awards}}

\end{document}

在此处输入图片描述

答案1

一种可能性是将命令添加\textbf到样式定义中,例如:

\renewcommand*{\sectionstyle}[1]{{\sectionfont\textcolor{color1}{\textbf{#1}}}}
%                                                                ^^^^^^^^^^^

以下完整的 MWE

\documentclass[11pt, letterpaper, sans]{moderncv}
\moderncvstyle{classic}
\moderncvcolor{blue}
\usepackage{fontawesome}
\usepackage[scale=0.85, top=2cm, bottom=2cm]{geometry}
\setlength{\hintscolumnwidth}{2.6cm}
\usepackage{tikz}
\usepackage{mathptmx}
\usepackage[11pt]{moresize}

\firstname{First}
\familyname{Last}
\email{[email protected]}

\renewcommand*{\sectionstyle}[1]{{\sectionfont\textcolor{color1}{\textbf{#1}}}}


\begin{document}

\makecvtitle

\section{Education}

\section{Awards}

\end{document}

得到期望的结果:

生成的 pdf

相关内容