-
Notifications
You must be signed in to change notification settings - Fork 20
/
template_for_long_CV.tex
188 lines (142 loc) · 4.22 KB
/
template_for_long_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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
\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.
\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{appointments}
$for(appointment)$
\subsection{$appointment.place$}
$for(appointment.items)$
$appointment.items.item$. $appointment.items.date$. \\
$endfor$
$endfor$
\section{education}
% Education uses a different field called ``items.''
$for(education)$
\subsection{$education.place$, $education.item$, $education.date$}
$if(education.info)$
$for(education.info)$
$if(education.info.text)$
% Store certain things in a field called 'text' to allow another field
% for priority.
$education.info.text$ \\
$else$
$education.info$ \\
$endif$
$endfor$
$endif$
$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{publications}
\subsection{Academic Publications}
$for(publication)$
$if(publication.academic)$
$if(publication.citekey)$
\cite{$publication.citekey$}.\\[.15cm]
$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$
$else$
$if(publication.public)$
$else$
% Raise an error if some publication is neither public nor academic;
% otherwise I'll lose some out of stupidity.
\error{$publication.title$}
$endif$
$endif$
$endfor$
\subsection{General Audience Publications}
$for(publication)$
$if(publication.public)$
$if(publication.citekey)$
\cite{$publication.citekey$}.\\[.15cm]
$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]
$endif$
% End of block for general publications
$endif$
$endfor$
\section{grants and fellowships}
$for(grants)$
$grants.description$\\[.15cm]
$endfor$
\section{software}
$for(software)$
$software.title$ ($software.language$). $software.description$.\\[.15cm]
$endfor$
\section{invited talks}
$for(invited_talk)$
``$invited_talk.title$.'' $if(invited_talk.host)$$invited_talk.host$, $endif$$invited_talk.place$. $invited_talk.date$.\\[.15cm]
$endfor$
\section{workshops}
$for(workshop)$
``$workshop.title$.''
$if(workshop.host)$$workshop.host$, $endif$$workshop.place$.
$workshop.date$.\\[.15cm]
$endfor$
\section{conference talks}
$for(conference)$
``$conference.title$.''
$if(conference.host)$$conference.host$, $endif$
$conference.place$.
$conference.date$.\\[.15cm]
$endfor$
\section{courses taught}
$for(teaching)$
``$teaching.title$.'' $teaching.date$. ($teaching.type$)\\[.15cm]
$endfor$
\section{public history}
$for(public_history)$
% This one has a hierarchical setup: there are multiple roles in public history, and
% each can have any number of ``gigs''
% These are irregular enough that I just use an ``item'' field to store the text.
\subsection{$public_history.role$}
$for(public_history.gigs)$
$public_history.gigs.item$ $public_history.gigs.date$.\\[.15cm]
$endfor$
$endfor$
\subsection{Selected media coverage}
$for(media_coverage)$
$if(media_coverage.citekey)$
\fullcite{$media_coverage.citekey$}\\
$else$
$media_coverage.title$, $media_coverage.journal$ ($media_coverage.date$) \\[.15cm]
$endif$
$endfor$
\section{service}
$for(service)$
\subsection{$service.type$}
$for(service.gigs)$
$service.gigs.item$. $service.gigs.date$.\\[.15cm]
$endfor$
$endfor$
\section{research competencies}
$for(competencies)$
\subsection{$competencies.type$}
$for(competencies.items)$
$competencies.items$\\[.15cm]
$endfor$
$endfor$
\end{document}