moderncv/examples/template.tex

132 lines
5.8 KiB
TeX
Raw Normal View History

2010-05-24 03:41:22 +02:00
%% start of file `template.tex'.
2011-11-06 19:56:28 +01:00
%% Copyright 2006-2011 Xavier Danaux (xdanaux@gmail.com).
2010-05-19 02:28:57 +02:00
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License version 1.3c,
% available at http://www.latex-project.org/lppl/.
\documentclass[11pt,a4paper]{moderncv}
% moderncv themes
\moderncvtheme[blue]{casual} % optional argument are 'blue' (default), 'orange', 'green', 'red', 'purple', 'grey' and 'roman' (for roman fonts, instead of sans serif fonts)
%\moderncvtheme[green]{classic} % idem
2010-05-19 02:28:57 +02:00
% character encoding
\usepackage[utf8]{inputenc} % replace by the encoding you are using
%\usepackage{CJKutf8} % if you need to use CJK to typeset your resume in Chinese, Japanese or Korean
2010-05-19 02:28:57 +02:00
% adjust the page margins
\usepackage[scale=0.8]{geometry}
%\setlength{\hintscolumnwidth}{3cm} % if you want to change the width of the column with the dates
%\setlength{\maketitlenamewidth}{10cm}} % only for the classic theme, if you want to change the width of your name placeholder (to leave more space for your address details
2010-05-19 02:28:57 +02:00
% personal data
\firstname{John}
\familyname{Doe}
\title{Resumé title (optional)} % optional, remove the line if not wanted
\address{street and number}{postcode city} % optional, remove the line if not wanted
\mobile{mobile (optional)} % optional, remove the line if not wanted
\phone{phone (optional)} % optional, remove the line if not wanted
\fax{fax (optional)} % optional, remove the line if not wanted
\email{email (optional)} % optional, remove the line if not wanted
2010-05-24 03:41:22 +02:00
\homepage{homepage (optional)} % optional, remove the line if not wanted
2010-05-19 02:28:57 +02:00
\extrainfo{additional information (optional)} % optional, remove the line if not wanted
\photo[64pt][0.4pt]{picture} % '64pt' is the height the picture must be resized to, 0.4pt is the thickness of the frame around it (put it to 0pt for no frame) and 'picture' is the name of the picture file; optional, remove the line if not wanted
2010-05-19 02:28:57 +02:00
\quote{Some quote (optional)} % optional, remove the line if not wanted
2010-05-31 21:46:59 +02:00
% to show numerical labels in the bibliography; only useful if you make citations in your resume
\makeatletter
\renewcommand*{\bibliographyitemlabel}{\@biblabel{\arabic{enumiv}}}
\makeatother
2010-05-19 02:28:57 +02:00
2010-05-24 03:41:22 +02:00
% bibliography with mutiple entries
%\usepackage{multibib}
%\newcites{book,misc}{{Books},{Others}}
2010-05-19 02:28:57 +02:00
2010-05-24 03:41:22 +02:00
%\nopagenumbers{} % uncomment to suppress automatic page numbering for CVs longer than one page
2010-05-19 02:28:57 +02:00
%----------------------------------------------------------------------------------
% content
%----------------------------------------------------------------------------------
\begin{document}
%\begin{CJK*}{UTF8}{gbsn} % to typeset your resume in Chinese using CJK
2010-05-19 02:28:57 +02:00
\maketitle
\section{Education}
2010-05-31 21:46:59 +02:00
\cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description} % arguments 3 to 6 can be left empty
\cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}
2010-05-19 02:28:57 +02:00
\section{Master thesis}
\cvline{title}{\emph{Title}}
\cvline{supervisors}{Supervisors}
\cvline{description}{\small Short thesis abstract}
\section{Experience}
\subsection{Vocational}
2010-05-31 21:46:59 +02:00
\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-achievements (don't do this!);
\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}{}{Description line 1\newline{}Description line 2}
2010-05-19 02:28:57 +02:00
\subsection{Miscellaneous}
2010-05-31 21:46:59 +02:00
\cventry{year--year}{Job title}{Employer}{City}{}{Description}
2010-05-19 02:28:57 +02:00
\section{Languages}
2010-05-24 03:41:22 +02:00
\cvlanguage{Language 1}{Skill level}{Comment}
\cvlanguage{Language 2}{Skill level}{Comment}
\cvlanguage{Language 3}{Skill level}{Comment}
2010-05-19 02:28:57 +02:00
\section{Computer skills}
\cvcomputer{category 1}{XXX, YYY, ZZZ}{category 4}{XXX, YYY, ZZZ}
\cvcomputer{category 2}{XXX, YYY, ZZZ}{category 5}{XXX, YYY, ZZZ}
\cvcomputer{category 3}{XXX, YYY, ZZZ}{category 6}{XXX, YYY, ZZZ}
\section{Interests}
\cvline{hobby 1}{\small Description}
\cvline{hobby 2}{\small Description}
\cvline{hobby 3}{\small Description}
\section{Extra 1}
\cvlistitem{Item 1}
\cvlistitem{Item 2}
\cvlistitem[+]{Item 3} % optional other symbol
2010-05-19 02:28:57 +02:00
\renewcommand{\listitemsymbol}{-} % change the symbol for lists
2010-05-31 21:46:59 +02:00
2010-05-19 02:28:57 +02:00
\section{Extra 2}
2010-05-31 21:46:59 +02:00
\cvlistdoubleitem{Item 1}{Item 4}
\cvlistdoubleitem{Item 2}{Item 5 \cite{book1}}
\cvlistdoubleitem{Item 3}{}
2010-05-19 02:28:57 +02:00
2010-05-24 03:41:22 +02:00
% Publications from a BibTeX file without multibib\renewcommand*{\bibliographyitemlabel}{\@biblabel{\arabic{enumiv}}}% for BibTeX numerical labels
2010-05-19 02:28:57 +02:00
\nocite{*}
\bibliographystyle{plain}
\bibliography{publications} % 'publications' is the name of a BibTeX file
2010-05-19 02:28:57 +02:00
2010-05-24 03:41:22 +02:00
% Publications from a BibTeX file using the multibib package
%\section{Publications}
%\nocitebook{book1,book2}
%\bibliographystylebook{plain}
%\bibliographybook{publications} % 'publications' is the name of a BibTeX file
2010-05-24 03:41:22 +02:00
%\nocitemisc{misc1,misc2,misc3}
%\bibliographystylemisc{plain}
%\bibliographymisc{publications} % 'publications' is the name of a BibTeX file
2010-05-24 03:41:22 +02:00
%\clearpage\end{CJK*} % if you are typesetting your resume in Chinese using CJK; the \clearpage is required for fancyhdr to work correctly with CJK, though it kills the page numbering by making \lastpage undefined
2010-05-19 02:28:57 +02:00
\end{document}
%% end of file `template_en.tex'.