我想更改部分内的字体粗细,但现在我需要添加\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}
得到期望的结果: