forked from bmschmidt/CV-pandoc-healy
-
Notifications
You must be signed in to change notification settings - Fork 4
/
template_for_short_CV.tex
139 lines (110 loc) · 3.29 KB
/
template_for_short_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
\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{}
\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)$
$education.place$, $education.item$, $education.date$.
$if(education.info)$ $for(education.info)$ $if(education.info.twopage)$ $education.info.text$ $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.twopage)$
$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$
$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.twopage)$
$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$
$endif$
$endfor$
\section{grants}
$for(grants)$
$grants$\\[.15cm]
$endfor$
\section{selected invited talks}
$for(invited_talk)$
$if(invited_talk.twopage)$
``$invited_talk.title$.'' $if(invited_talk.host)$$invited_talk.host$, $endif$$invited_talk.place$. $invited_talk.date$.\\[.15cm]
$endif$
$endfor$
\section{selected conference talks}
$for(conference)$
$if(conference.twopage)$
``$conference.title$.''
$if(conference.host)$$conference.host$, $endif$
$conference.place$.
$conference.date$.\\[.15cm]
$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{research competencies}
$for(competencies)$
$competencies.type$. $for(competencies.items)$ $competencies.items$$endfor$\\[.15cm]
$endfor$
\end{document}