I'm trying to convert a LaTeX 2.09 template to LaTeX2e (pdflatex):
http://www.yisongyue.com/resume/
How should I convert this line ?
\documentstyle[hyperref, margin, line]{res_yy}
I don't know what class I need to use
\documentclass{article} %% ???
\usepackage{res_yy}
\usepackage{hyperref}
\usepackage{line}
res_yyclass for LaTeX2e. – Joseph Wright Oct 01 '11 at 07:25\input article.styin a (renamed) copy of res_yy.sty and then load it with\usepackageand look what happens. If you want to use hyperref you should also remove the\nofilescommand. – Ulrike Fischer Oct 01 '11 at 10:37