更改 res 文档中的部分字体

更改 res 文档中的部分字体

我正在使用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}

及其结果:

生成的 pdf

相关内容