1

So I tried to start my resume like this:

\documentclass{res} 

\usepackage{graphics}
\usepackage{color}
\usepackage{fancyhdr}
\pagestyle{fancy}

\cfoot{Name}
\rfoot{\thepage}
\fancyhead{}
\renewcommand{\headrulewidth}{0pt}


\begin{document}

\name{Name}
\address{Address info}

I got the error Missing \begin{document}

I don't know why I keep getting this error. Any help would be appreciated.

Mensch
  • 65,388

1 Answers1

1

In the resume class I believe you need to \begin{resume} as well. Here is a MWE based on yours.

\documentclass{res} 

\usepackage{graphics}
\usepackage{color}
\usepackage{fancyhdr}
\pagestyle{fancy}

\cfoot{Name}
\rfoot{\thepage}
\fancyhead{}
\renewcommand{\headrulewidth}{0pt}


\begin{document}

\name{Name}
\address{Address info}
\begin{resume}
I worked
\end{resume}

\end{document}