因此我尝试这样开始我的简历:
\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}
我收到错误 Missing \begin{document}
我不知道为什么我总是收到这个错误。如能得到任何帮助我将不胜感激。
答案1
在简历类中,我相信你也需要\begin{resume}
。这是基于你的简历的 MWE。
\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}