1

I am in the process of transferring my resume from a word processor format to LaTeX. For the body of the resume, I'd like each section (e.g. education, work experience) to appear like

enter image description here

I used a table in Word with two columns to get that look but I can't implement this in LaTeX.

dustin
  • 18,617
  • 23
  • 99
  • 204

1 Answers1

0

I like the currvita package. Here's an example

\documentclass{article}
\usepackage{currvita}
\begin{document}
\begin{cv}{Curriculum Vit\ae}
\begin{cvlist}{}
\item[Education]
Massachusetts\\
\textit{Candidate for Bachelor of Science in}\\
\dots
\end{cvlist}
\end{cv}
\end{document}
ShreevatsaR
  • 45,428
  • 10
  • 117
  • 149
TH.
  • 62,639
  • This is great, just two questions: how do you adjust the distance between columns, and how do you remove the date at the bottom of the generated pdf? – djlovesupr3me Jul 31 '13 at 23:41
  • @djlovesupr3me Check out the documentation. Specifically, the NoDate option to currvita and \cvlabelwidth for the width of the label. – TH. Aug 01 '13 at 00:00