(no commit message)
[ozzloy@gmail.com/cv] / examples / moderncv / daniel_watson_resume_moderncv.tex
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 % optional argument are 'blue' (default), 'orange', 'red', 'green', 'grey'
13 % and 'roman' (for roman fonts, instead of sans serif fonts)
14 \moderncvtheme[blue]{casual}
15 %\moderncvtheme[green]{classic} % idem
16
17 % character encoding
18 \usepackage[utf8]{inputenc}
19
20 % adjust the page margins
21 \usepackage[scale=0.8]{geometry}
22 % if you want to change the width of the column with the dates
23 %\setlength{\hintscolumnwidth}{3cm}
24
25 % only for the classic theme, if you want to change the width of your name
26 % placeholder (to leave more space for your address details
27 %\AtBeginDocument{\setlength{\maketitlenamewidth}{6cm}}
28
29 % required when changes are made to page layout lengths
30 \AtBeginDocument{\recomputelengths}
31
32 % personal data
33 \firstname{Daniel}
34 \familyname{Watson}
35 % optional, remove the line if not wanted
36 \title{Resumé title (optional)}
37 % optional, remove the line if not wanted
38 \address{7944 Playmor Terrace}{San Diego}
39 % optional, remove the line if not wanted
40 \mobile{805.699.5690}
41 % optional, remove the line if not wanted
42 %\phone{phone (optional)}
43 % optional, remove the line if not wanted
44 %\fax{fax (optional)}
45 % optional, remove the line if not wanted
46 \email{ozzloy@gmail.com}
47 % optional, remove the line if not wanted
48 %\extrainfo{additional information (optional)}
49 % '64pt' is the height the picture must be resized to and 'picture' is the name
50 % of the picture file; optional, remove the line if not wanted
51 \photo[64pt]{picture}
52 % optional, remove the line if not wanted
53 %\quote{Some quote (optional)}
54
55 % uncomment to suppress automatic page numbering for CVs longer than one page
56 %\nopagenumbers{}
57
58
59 %-------------------------------------------------------------------------------
60 % content
61 %-------------------------------------------------------------------------------
62 \begin{document}
63 \maketitle
64
65 \section{Education}
66 % arguments 3 to 6 are optional
67 \cventry{2003--2008}{Bachelor's}{UCSD}{Computer Science}
68
69 \section{Experience}
70 \subsection{Vocational}
71 % arguments 3 to 6 are optional
72 \cventry{2008--2010}{Software Engineer}{Avaak Inc.}{San Diego}{did some awesome stuff}
73 \cventry{year--year}{Job title}{Employer}{City}{}{Description} % arguments 3 to 6 are optional
74 \subsection{Miscellaneous}
75 \cventry{year--year}{Job title}{Employer}{City}{}{Description line 1\newline{}Description line 2}% arguments 3 to 6 are optional
76
77 \section{Languages}
78 \cvlanguage{Ruby}{proficient}
79 {Started using ruby in 2007. my go-to language.}
80 \cvlanguage{c}{proficient}{first
81 programming language, holds a special place in my
82 heart.}
83 \cvlanguage{Java}{capable}{i dislike the
84 verbosity in this language. i have not used it
85 outside of class projects at UCSD}
86 \cvlanguage{c++}{capable}{first
87 programming language, holds a special place in my
88 heart.}
89 \cvlanguage{Python}{capable}{first learned about
90 meta programming in this language with function
91 decorators.}
92
93 \section{Computer skills}
94 \cvcomputer{category 1}{XXX, YYY, ZZZ}{category 4}{XXX, YYY, ZZZ}
95 \cvcomputer{category 2}{XXX, YYY, ZZZ}{category 5}{XXX, YYY, ZZZ}
96 \cvcomputer{category 3}{XXX, YYY, ZZZ}{category 6}{XXX, YYY, ZZZ}
97
98 \section{Interests}
99 \cvline{hobby 1}{\small Description}
100 \cvline{hobby 2}{\small Description}
101 \cvline{hobby 3}{\small Description}
102
103 \renewcommand{\listitemsymbol}{-} % change the symbol for lists
104
105 \section{Extra 1}
106 \cvlistitem{Item 1}
107 \cvlistitem{Item 2}
108 \cvlistitem[+]{Item 3} % optional other symbol
109
110 \section{Extra 2}
111 \cvlistdoubleitem[\Neutral]{Item 1}{Item 4}
112 \cvlistdoubleitem[\Neutral]{Item 2}{Item 5}
113 \cvlistdoubleitem[\Neutral]{Item 3}{}
114
115 % Publications from a BibTeX file
116 \nocite{*}
117 \bibliographystyle{plain}
118 \bibliography{publications} % 'publications' is the name of a BibTeX file
119
120 \end{document}
121
122
123 %% end of file `template_en.tex'.