我正在使用res.cls
它来写简历。我想取消部分标题的粗体并使用斜体字体(如下图所示)。
\documentclass[margin]{res}
\setlength{\textwidth}{5.1in} % set width of text portion
\parskip = 0.5cm
\begin{document}
% Center the name
\moveleft.5\hoffset\centerline{\large\bf name}
% Draw a horizontal line
\moveleft\hoffset\vbox{\hrule width\resumewidth height 1pt}\smallskip
% address, email and phone
\moveleft.5\hoffset\centerline{address}
\moveleft.5\hoffset\centerline{email}
\moveleft.5\hoffset\centerline{phone}
\begin{resume}
\section{EDUCATION}
\textbf{University of ...} \hfill 2015--2019\\
BSc in ..., May 2019
\section{EMPLOYMENT}
...
\end{resume}
\end{document}
我尝试使用该titlesec
包。如果我添加
\usepackage{titlesec}
\titleformat{\section}{\itshape}{}{}{}[]
答案1
嗯,使用的模板非常旧,不应再使用,例如它仍然使用过时的命令,如\bf
。
尽管如此,你可以在序言命令中使用
\renewcommand\sectionfont{\itshape}%\bf
将部分字体从粗体更改为斜体。
顺便说一句:该课程太旧,无法使用包titlesec
......
请参阅完整的 MWE
\documentclass[margin]{res}
\renewcommand\sectionfont{\itshape}%\bf
\setlength{\textwidth}{5.1in} % set width of text portion
\parskip = 0.5cm
\begin{document}
% Center the name
\moveleft.5\hoffset\centerline{\large\bf name}
% Draw a horizontal line
\moveleft\hoffset\vbox{\hrule width\resumewidth height 1pt}\smallskip
% address, email and phone
\moveleft.5\hoffset\centerline{address}
\moveleft.5\hoffset\centerline{email}
\moveleft.5\hoffset\centerline{phone}
\begin{resume}
\section{EDUCATION}
\textbf{University of ...} \hfill 2015--2019\\
BSc in ..., May 2019
\section{EMPLOYMENT}
...
\end{resume}
\end{document}
及其结果: