-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresume.tex.j2
68 lines (56 loc) · 1.67 KB
/
resume.tex.j2
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
\title{{ '{' }}{{ common.name.last }}, {{ common.name.first }} - Resume{{ '}' }}
\author{{ '{' }}{{ common.name.first }} {{ common.name.last }}{{ '}' }}
\documentclass[10pt]{article}
\usepackage{hyperref}
\usepackage[top=.5in, bottom=.5in, left=.5in, right=.6in]{geometry}
\pagenumbering{gobble}
\setlength{\tabcolsep}{0in}
\begin{document}
\begin{center}
\textbf{\LARGE {{ common.name.first }} {{ common.name.last }}} \\
{{ common.website }} \\
{{ common.email }} \\
\end{center}
\vspace{0.5em}
{\large \textbf{Experience}}
\begin{itemize}
{% for job in experience %}
\item
\begin{tabular*}{7.0in}{l@{\extracolsep{\fill}}r}
\textbf{{ '{' }}{{ job.title }}{{ '}' }}, {{ job.company }}, {{ job.location }} & {{ job.date }} \\
\end{tabular*}
\begin{itemize}
{% for point in job.points %}
\item {{ point }}
{% endfor %}
\end{itemize}
{% endfor %}
\end{itemize}
\vspace{0.5em}
{\large \textbf{Skills}}
\begin{flushleft}
\addtolength{\leftskip}{.3in}
\textbf{Methodologies:}\\
{{ skills.methodologies | join(', ') }}
\vspace{0.5em}
\textbf{Tools:}\\
{{ skills.tools | join(', ') }}
\end{flushleft}
\vspace{0.5em}
{\large \textbf{Certifications}}
\begin{itemize}
{% for cert in common.certifications %}
\item {{ cert }}
{% endfor %}
\end{itemize}
\vspace{0.5em}
{\large \textbf{Education}}
\begin{itemize}
{% for edu in common.education %}
\item
\begin{tabular*}{7.0in}{l@{\extracolsep{\fill}}r}
\textbf{{ '{' }}{{ edu.institution }}{{ '}' }}, {{ edu.degree }} & {{ edu.date }} \\
\end{tabular*}
{% endfor %}
\end{itemize}
\end{document}