-
Notifications
You must be signed in to change notification settings - Fork 20
/
template_for_resume_cv.tex
94 lines (72 loc) · 2.02 KB
/
template_for_resume_cv.tex
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
\documentclass[11pt, letter]{article}
% This is a tex file to make Ben Schmidt's CV.
% The content is
\usepackage{jk-vita}
\usepackage[notes,natbib,isbn=false,backend=biber,url=false,numbermonth=true]{biblatex-chicago}
%\usepackage{biblatex}
% Your biblatex file is likely somewhere else.
$if(bibliography)$
\addbibresource{$bibliography$}
$endif$
\title{$title$}
\name{$name$}
% I guess postnoms is like junior? I dunno.
\postnoms{}
\address{
$for(address)$
$address$\\
$endfor$
}
\www{$www$}
\email{$email$}
\tel{$tel$}
\twitter{$twitter$}
\subject{}
\begin{document}
\maketitle
\section{experience}
$for(appointment)$
\subsection{$appointment.place$}
$for(appointment.items)$
\textbf{$appointment.items.item$}. \emph{$appointment.items.date$}. $appointment.items.description$ \\
$endfor$
$endfor$
\section{education}
% Education uses a different field called ``items.''
$for(education)$
$education.place$, $education.item$, $education.date$. \\
$endfor$
% A little wonky. I want my publications divided up based on tags.
% (Yes, it would be better to just do this with bib file). That's for later.
\section{selected publications}
$for(publication)$
$if(publication.federal)$
$if(publication.citekey)$
\cite{$publication.citekey$}.\\[.1cm]
$else$
$if(publication.author)$$publication.author$,$endif$
``$publication.title$.'' $if(publication.journal)$\textit{$publication.journal$}$if(publication.journal_info)$, $publication.journal_info$$endif$.$endif$ $publication.date$$if(publication.description)$. $publication.description$$endif$.\\[.15cm]
% End of block for academic publications
$endif$
$endif$
$endfor$
\section{selected grants}
$for(grants)$
$if(grants.federal)$
$grants.description$\\[.1cm]
$endif$
$endfor$
\section{service}
$for(service)$
%\subsection{$service.type$}
$for(service.gigs)$
$if(service.gigs.twopage)$
$service.gigs.item$. $service.gigs.date$.\\[.15cm]
$endif$
$endfor$
$endfor$
\section{software}
$for(software)$
``$software.program$.'' ($software.language$) $software.description$\\[.1cm]
$endfor$
\end{document}