[Tex/LaTex] Change font size of the name parameter for res

cvfontsresume

I'm currently creating a resume using the res class. Is there a way for me to change the font size of the name parameter (which appears at the top of the page for me)? It's not quite like a section header because it's automatically there.

Best Answer

The res class provides \namefont which you can redefine to suit your needs. Default is \large\bfseries:

enter image description here

\documentclass[margin,line]{res}
\renewcommand{\namefont}{\bfseries\LARGE}
\begin{document}

\name{A Person}
\opening
\end{document}

I'd avoid using the res class, and settle for something more recent, like moderncv, or create your resume manually.