(no commit message)
[ozzloy@gmail.com/cv] / examples / moderncv / template_en.tex
CommitLineData
08cfcb08 1%% start of file `template_en.tex'.
2%% Copyright 2006-1008 Xavier Danaux (xdanaux@gmail.com).
3%
4% This work may be distributed and/or modified under the
5% conditions of the LaTeX Project Public License version 1.3c,
6% available at http://www.latex-project.org/lppl/.
7
8
9\documentclass[11pt,a4paper]{moderncv}
10
11% moderncv themes
12\moderncvtheme[blue]{casual} % optional argument are 'blue' (default), 'orange', 'red', 'green', 'grey' and 'roman' (for roman fonts, instead of sans serif fonts)
13%\moderncvtheme[green]{classic} % idem
14
15% character encoding
16\usepackage[utf8]{inputenc} % replace by the encoding you are using
17
18% adjust the page margins
19\usepackage[scale=0.8]{geometry}
20%\setlength{\hintscolumnwidth}{3cm} % if you want to change the width of the column with the dates
21%\AtBeginDocument{\setlength{\maketitlenamewidth}{6cm}} % only for the classic theme, if you want to change the width of your name placeholder (to leave more space for your address details
22\AtBeginDocument{\recomputelengths} % required when changes are made to page layout lengths
23
24% personal data
25\firstname{John}
26\familyname{Doe}
27\title{Resumé title (optional)} % optional, remove the line if not wanted
28\address{street and number}{postcode city} % optional, remove the line if not wanted
29\mobile{mobile (optional)} % optional, remove the line if not wanted
30\phone{phone (optional)} % optional, remove the line if not wanted
31\fax{fax (optional)} % optional, remove the line if not wanted
32\email{email (optional)} % optional, remove the line if not wanted
33\extrainfo{additional information (optional)} % optional, remove the line if not wanted
34\photo[64pt]{picture} % '64pt' is the height the picture must be resized to and 'picture' is the name of the picture file; optional, remove the line if not wanted
35\quote{Some quote (optional)} % optional, remove the line if not wanted
36
37%\nopagenumbers{} % uncomment to suppress automatic page numbering for CVs longer than one page
38
39
40%----------------------------------------------------------------------------------
41% content
42%----------------------------------------------------------------------------------
43\begin{document}
44\maketitle
45
46\section{Education}
47\cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description} % arguments 3 to 6 are optional
48\cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description} % arguments 3 to 6 are optional
49
50\section{Master thesis}
51\cvline{title}{\emph{Title}}
52\cvline{supervisors}{Supervisors}
53\cvline{description}{\small Short thesis abstract}
54
55\section{Experience}
56\subsection{Vocational}
57\cventry{year--year}{Job title}{Employer}{City}{}{Description} % arguments 3 to 6 are optional
58\cventry{year--year}{Job title}{Employer}{City}{}{Description} % arguments 3 to 6 are optional
59\subsection{Miscellaneous}
60\cventry{year--year}{Job title}{Employer}{City}{}{Description line 1\newline{}Description line 2}% arguments 3 to 6 are optional
61
62\section{Languages}
63\cvlanguage{language 1}{Skill level}{Comment}
64\cvlanguage{language 2}{Skill level}{Comment}
65\cvlanguage{language 3}{Skill level}{Comment}
66
67\section{Computer skills}
68\cvcomputer{category 1}{XXX, YYY, ZZZ}{category 4}{XXX, YYY, ZZZ}
69\cvcomputer{category 2}{XXX, YYY, ZZZ}{category 5}{XXX, YYY, ZZZ}
70\cvcomputer{category 3}{XXX, YYY, ZZZ}{category 6}{XXX, YYY, ZZZ}
71
72\section{Interests}
73\cvline{hobby 1}{\small Description}
74\cvline{hobby 2}{\small Description}
75\cvline{hobby 3}{\small Description}
76
77\renewcommand{\listitemsymbol}{-} % change the symbol for lists
78
79\section{Extra 1}
80\cvlistitem{Item 1}
81\cvlistitem{Item 2}
82\cvlistitem[+]{Item 3} % optional other symbol
83
84\section{Extra 2}
85\cvlistdoubleitem[\Neutral]{Item 1}{Item 4}
86\cvlistdoubleitem[\Neutral]{Item 2}{Item 5}
87\cvlistdoubleitem[\Neutral]{Item 3}{}
88
89% Publications from a BibTeX file
90\nocite{*}
91\bibliographystyle{plain}
92\bibliography{publications} % 'publications' is the name of a BibTeX file
93
94\end{document}
95
96
97%% end of file `template_en.tex'.