\textsc 和 \textbf 都適用於使用 Modern CV 的部分

\textsc 和 \textbf 都適用於使用 Modern CV 的部分

嗯,一切都在標題中。我不想使用諸如加載fontenc之類的東西,只需啟用\section{\textbf{\textsc{Experience}}}

編輯 :

好吧,謝謝大家,我嘗試過:

\documentclass[10pt,a4paper]{moderncv}
\moderncvtheme[blue]{classic}                
\usepackage[utf8]{inputenc}
\usepackage{color}
\usepackage{amsmath}
\usepackage{amssymb}

\usepackage[inner=1.2cm,outer=1.2cm,top=0.4cm,bottom=0.4cm]{geometry}

\usepackage{sourcesanspro}
\renewcommand*{\sectionfont}{\Large\bfseries\scshape}

\firstname{\Large{Aaaa}}
\familyname{\Large{\textsc{Bbbb}}}
\title{\normalsize Iiiiiiiiiiiii }
\address{\textbf{113 iiiii}}{\textbf{000 Vvvvv}}  
\mobile{\textbf{0000000}}             
\email{[email protected]} 
\extrainfo{\textbf{bla bla}}  

\begin{document}
\pagestyle{empty}
\maketitle

\section{Experience}
\end{document}

也許它有效。 「經驗」粗體字看起來很正常。使用“fontenc”,因為我不喜歡 sourseanpro 不起作用(對我來說)。我需要的是刪除 sourceandpro 和 renewcomand 行並在部分中使用 \textsc 時結果為粗體。

好吧,我不滿意,如何正確使用“sans”選項?

答案1

\renewcommand*{\sectionfont}{\Large\bfseries\scshape}可以完成這項工作,但正如沃納所說,您需要合適的字體。sourcesanspro例如,有粗體小寫字母(我喜歡它)。

正如 karlkoeller 所說,由於這是一種無襯線字體,因此您需要傳遞 class 選項sans

\documentclass[10pt,a4paper,sans]{moderncv}

如果您想要襯線字體,您可以加載bold-extra包,或從此答案中選擇字體:https://tex.stackexchange.com/a/98581/61789

相關內容