2

I just can't figure this one out. I'm using

\documentclass[margin,line,8pt]{res}

and want my title/name in the middle of the page.

Mensch
  • 65,388
user66023
  • 21
  • 1

1 Answers1

2

Are you sure res is the best class to use? it has hardly been updated since 1989, so is mostly older than LaTeX2e.

Anyway, if I use the line you posted

\documentclass[margin,line,8pt]{res}

I get

LaTeX Warning: Unused global option(s):
    [8pt].

as the class does not have an 8pt option, however it does have a centered option and

\documentclass[margin,centered]{res}

\begin{document}
\name{my name}
\begin{resume}

\end{resume}
\end{document}

produces

enter image description here

with the name centred.

Manuel
  • 27,118
David Carlisle
  • 757,742