ModernCV


My time at ITC is temporal, since my current CV dates from 4 years ago (I was not even a computer engineer) it’s time to prepare another one.

I wanted to be lazy and tried to get it directly from Linkedin, and after that, modify it a little bit. There’s a good application in linkedinlabs called Linkedin Resume, it looks really nice and has some basic templates. The bad thing about it is that you can’t edit the contents, if you want to modify something you have to change your Linkedin profile directly.

I don’t want to do that, so I’m going to work on a blank file and start it from scratch, this time with LaTeX.

Googling a little bit everyone will find a package called moderncv. You can get it from CTAN, install it from the repos (if you are in Linux), or probably MikTex will find it for you in Windows.

The moderncv package does not have any kind of documentation (big blocker), but working from the examples is easy enough.

\documentclass[11pt,a4paper,sans]{moderncv}  

% Themes moderncv "casual","classic","oldstyle","banking"
\moderncvstyle{casual}                        
% 'blue' (default), 'orange', 'green', 'red', 'purple', 'grey' y 'black'
\moderncvcolor{blue}                          


% margins
\usepackage[scale=0.75]{geometry}

% Basic Data
% All this inputs are optional
\firstname{John}
\familyname{Doe}
\title{T\'itulo del CV (opcional)}
\address{calle y n\'umero}{c\'odigo postal y ciudad}
\mobile{+1~(234)~567~890}
\phone{+2~(345)~678~901}
\fax{+3~(456)~789~012}
\email{john@doe.org}
\homepage{www.johndoe.com}
\extrainfo{informacion adicional}
% '64pt' i the adjusting height, 0.4pt is the border width and picture the image file 
\photo[64pt][0.4pt]{picture}                         
\quote{A cite, is optional}

%----------------------------------------------------------------------------------
%            CONTENT
%----------------------------------------------------------------------------------
\begin{document}
\maketitle

\section{Education}
% arguments 3 to 6 are optional
\cventry{year--year}{Degree}{Institution}{city}{\textit{Grade}}{Description}
\cventry{year--year}{Degree}{Institution}{city}{\textit{Grade}}{Description}

\section{Master thesis}
\cvitem{title}{\emph{Title}}
\cvitem{supervisors}{supervisors}
\cvitem{description}{Short thesis abstract}

\section{Expperience}
\subsection{Vocational}
\cventry{year--year}{Job Title}{Employer}{City}{}{General description no longer than 1–2 lines..\newline{}%
Detailed achievements:%
\begin{itemize}%
\item Achievement 1;
\item Achievement 2, with sub-achievements:
  \begin{itemize}%
  \item Sub-achievement (a);
  \item Sub-achievement (b), with Sub-sub-achievement (¡this is bad!);
    \begin{itemize}
    \item Sub-sub-achievement i;
    \item Sub-sub-achievement ii;
    \item Sub-sub-achievement iii;
    \end{itemize}
  \item Sub-achievement (c);
  \end{itemize}
\item Achievement 3.
\end{itemize}}
\cventry{year--year}{Job Title}{Employer}{City}{}{General description no longer than 1–2 lines}
\subsection{Miscellaneous}
\cventry{year--year}{Job Title}{Employer}{City}{}{General description no longer than 1–2 lines}

\section{Languages}
\cvitemwithcomment{Language  1}{Skill level}{Comment}
\cvitemwithcomment{Language  2}{Skill level}{Comment}
\cvitemwithcomment{Language  3}{Skill level}{Comment}

\section{Computer skills}
\cvdoubleitem{category}{XXX, YYY, ZZZ}{category}{XXX, YYY, ZZZ}
\cvdoubleitem{category}{XXX, YYY, ZZZ}{category}{XXX, YYY, ZZZ}
\cvdoubleitem{category}{XXX, YYY, ZZZ}{category}{XXX, YYY, ZZZ}

\section{Interests}
\cvitem{hobby 1}{description}
\cvitem{hobby 2}{description}
\cvitem{hobby 3}{description}

\section{Extra 1}
\cvlistitem{Item 1}
\cvlistitem{Item 2}
\cvlistitem{Item 3}

% Change lists symbol
\renewcommand{\listitemsymbol}{-~}            

\section{Extra 2}
\cvlistdoubleitem{Item 1}{Item 4}
\cvlistdoubleitem{Item 2}{Item 5\cite{book1}}
\cvlistdoubleitem{Item 3}{}

% Publicatons from a BIBTEX file
\nocite{*}
\bibliographystyle{plain}
\bibliography{publications}

\end{document}

moderncv is a new type of documentclass added to LaTeX, we have to specify we want to use it:

\documentclass[11pt,a4paper]{moderncv}

There are two styles of CV: casual and classic, combined with different color styles: orange, red, green and grey

\moderncvtheme[grey]{classic}

The typical \section and \subsection options are used. But also new commands are defined: \cventry, \cvlanguage, \cvcomputer, \cvline and \cvlistdoubleitem. Those commands will format our cv in a clean and beautiful way.

The result looks very good!

I know I know, that’s not my Résumé it’s only an example. 🙂

Advertisement

1 Comment

Filed under code, tips, tools

One response to “ModernCV

  1. jose mourinho

    I’m wondering if there is a cover letter template that matches?

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.