-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.tex.mustache
128 lines (97 loc) · 3.36 KB
/
template.tex.mustache
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{{=!! !!=}}
% possible options include
% font size ('10pt', '11pt' and '12pt')
% paper size ('a4paper', 'letterpaper', 'a5paper', 'legalpaper', 'executivepaper' and 'landscape')
% font family ('sans' and 'roman')
\documentclass[11pt,a4paper,sans]{moderncv}
% style options are 'casual' (default), 'classic', 'oldstyle' and 'banking'
\moderncvstyle{banking}
% color options 'blue' (default), 'orange', 'green', 'red', 'purple', 'grey' and 'black'
\moderncvcolor{blue}
% to set the default font; use '\sfdefault' for the default sans serif font, '\rmdefault' for the default roman one, or any tex font name
%\renewcommand{\familydefault}{\sfdefault}
% uncomment to suppress automatic page numbering for CVs longer than one page
\nopagenumbers{}
% character encoding
% if not using xelatex ou lualatex, set the encoding you're using
\usepackage[utf8]{inputenc}
% adjust the page margins
\usepackage[scale=0.75]{geometry}
% change the width of the column with the dates
%\setlength{\hintscolumnwidth}{3cm}
% for the 'classic' style, force the width allocated to the name and avoid line breaks.
% be careful though, the length is normally calculated to avoid any overlap with your personal info
%\setlength{\makecvtitlenamewidth}{10cm}
\usepackage{import}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% personal data %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\name{!!firstname!!}{!!lastname!!}
%\title{Curriculum Vitae}
%\address{!!address!!}{!!city!!}{!!country!!}
\phone[mobile]{!!mobile!!}
%\phone[fixed]{!!fixed!!}
\email{!!email!!}
\homepage{!!website!!}
% '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
%\photo[64pt][0.4pt]{picture}
%\quote{Some quote}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% content %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\makecvtitle
\small{!!bio!!}
\section{!!experience_section!!}
\vspace{3pt}
\begin{itemize}
!!#experiences!!
\item{\cventry{!!interval!!}{!!title!!}{!!company!!}{!!location!!}{}{\vspace{3pt}!!job_description!!}}
\vspace{3pt}
!!/experiences!!
\end{itemize}
\section{!!education_section!!}
\vspace{3pt}
\begin{itemize}
!!#education!!
\item{\cventry{!!interval!!}{!!title!!}{!!institution!!}{!!location!!}{}{\textit{!!extra_info!!}}}
!!/education!!
\end{itemize}
\section{!!knowledge_section!!}
\vspace{3pt}
\begin{itemize}
!!#knowledge!!
\item \textbf{!!title!!} \\
!!description!!
\vspace{3pt}
!!/knowledge!!
\end{itemize}
\newpage
%\section{!!other_info_section!!}
%\vspace{6pt}
%\subsection{!!interests_section!!}
\section{!!interests_section!!}
\begin{itemize}
!!#interests!!
\item{!!description!!}
\vspace{3pt}
!!/interests!!
\end{itemize}
\vspace{3pt}
%\subsection{!!projects_section!!}
\section{!!projects_section!!}
\begin{itemize}
!!#projects!!
\item \textbf{!!title!!} \textit{(!!technologies!!)} \\
!!description!!
\vspace{3pt}
!!/projects!!
\end{itemize}
%\section{References}
%\vspace{6pt}
%\begin{itemize}
%\item{Up to 4 references available on request}
%\end{itemize}
\end{document}