LaTeX CV Template
December 9th, 2008
Creating a CV or resume in LaTeX can be time-consuming, especially if you’re relatively new to it or only know the basic math commands (like 9 out of 10 mathematicians). Thus, I present to you the LaTeX CV template that I use, which is based on the template found on David Grant’s website. The template makes use of the framed, tocloft, and xcolor packages, which come pretty standard with most LaTeX distributions. I have also made a few (in my mind) improvements and fixes to the original template:
- Added dot separators to the “Awards” list to make it easier to read.
- Fixed a shading glitch when using tex2pdf.
- Pretty-ified heading borders a bit.
Download:
- LaTeX files: CV Template (cv_temp.tex), My CV (cv.tex)
- PDF files: CV Template (cv_temp.pdf), My CV (cv.pdf)
Hi Nathaniel
I am a graduate student at Carleton University. I was Googling Latex CV templates and stumbled upon yours. Thanks for making it available.
Barb
Great template!
Like Barb I googled for template and stumbled upon yours. Really nice.
.
Excuse me to not put the license on my CV but I think it wouldn’t be a good idee
Thanks a lot,
Crahels
Thank you for this!
iv just tried playing around with some of the parameters and changing the “\setlength{\outerbordwidth}{3pt}” value doesn’t seem to have an effect?
@Daniel Hopwood – Ah! You’re quite right. I’ve updated the files so that they work correctly now, but here’s what the problem was:
Line 45 looked like one of the following two things (depending on whether you downloaded the .tex of the template or of my CV):
\parbox{\textwidth}{\setlength{\FrameSep}{\fboxsep}
- OR -
\parbox{\textwidth}{\setlength{\fboxsep}{\outerbordwidth}
It should have looked like this:
\parbox{\textwidth}{\setlength{\FrameSep}{\outerbordwidth}
Sorry about that, and thanks for letting me know!
Thanks! all works now
Hi,
I shared my LaTeX code for a CV at http://cv-templates.info , the main difference is it has custom fonts and one template has two columns.
Regards
Hi,
Thank you for sharing your CV-template.
Thanks, this is excellent
i have required a Cv formate as i can impress to the profetionals
thanks! this is great!
Thanks for sharing this wonderful and useful template!
I have one question: how can I justify the lines at both sides?? I am writing a couple of lines in one single item and LaTeX is not doing a good job.
Thanks a lot for this very useful template!
One question: I have been trying to insert a photo ID at the top right of the CV. To do so, I slightly rearranged the info so that everything relevant on the top right (namely phone number and email) appeared on the top left instead. Now, I would like to insert a picture. To do so, I used the wrapfigure environment. So the beginning of my document is:
\begin{document}
\begin{wrapfigure}{r}{3cm}
\includegraphics[scale=0.05]{Mypicture.png}
\end{wrapfigure}
\begin{tabular*}{7in}{l@{\extracolsep{\fill}}r}
\textbf{\Large My Name}\\
Research Analyst\\
My Town, Ontario, Canada\\
Myemail\\
Myphonenumber\\
\end{tabular*}
\\
This is the only change I made; the rest is as in your template.
So my issue is that my picture is too low (i.e. it does not appear at the same level than “My Name”), and it messes up the categories below – thus, the subsections of “Education,” such as “Why Electrons Spins Rule,” are now completely on the left of the document instead of slightly on the right of the “My University” section. How could I insert my picture wihtout it messing up the whole thing?
Thanks a lot!