1

For the resume I need to add the refrees in two coloumns with numbering which is shown below. I am using res.cls . How can I do that? anybody please help enter image description here

1 Answers1

1

Perhaps the following would suffice:

enter image description here

\documentclass[margin,10pt]{res}

\usepackage{lipsum}

\begin{document}

\name{A Person}
\opening

\hspace*{-\sectionwidth}%
\makebox[\dimexpr\sectionwidth+\linewidth]{\begin{tabular}[t]{ l }
  \makebox[0pt][r]{1. }First Person \\
  address line 1 \\
  address line 2
\end{tabular}\hspace{.25\linewidth}%
\begin{tabular}[t]{ l }
  \makebox[0pt][r]{2. }Second Person \\
  phone number \\
  email address
\end{tabular}}

\lipsum[1]

\end{document}
Werner
  • 603,163