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

Asked
Active
Viewed 27 times
1
Arulraj Figurado
- 113
-
Related: Separate columns with text in different text in each column – Werner Nov 17 '16 at 04:38
-
1It would be great if you could show some effort and include a minimal document we can work with. – Werner Nov 17 '16 at 05:19
1 Answers
1
Perhaps the following would suffice:
\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
