I'm using res.cls to write a CV. I'd like to unbold the section title and use the italic font (as the picture below).
\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}
I tried to use the titlesec package. If I add
\usepackage{titlesec}
\titleformat{\section}{\itshape}{}{}{}[]



articleand add wanted layout to it or you can for example use classmoderncv, stylebankinglooking simular to what you have withres. Have also a look to question https://tex.stackexchange.com/questions/80/latex-template-for-resume-curriculum-vitae – Mensch Aug 21 '19 at 18:35