-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCV.tex
239 lines (199 loc) · 8.66 KB
/
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
%!TEX TS-program = lualatex
%!TEX encoding = UTF-8 Unicode
% This is the simplest class to start with. You may want to change the
% paper format or the standard font size.
\documentclass[a4paper,11pt]{article}
\usepackage[british]{babel} % Change this
\usepackage {fontspec} % Font selection
\usepackage {fontawesome} % Symbols/icons
% Change this depending on your own preferences. I personally prefer
% nice ligatures and 'old style' numbers. Additionally, the way each
% font is set up ensures that the layout is very uniform---mostly, I
% achieve this effect using `MatchLowercase`.
%
% TODO: Make sure you select a font with small caps here, unless you
% also change the section style. See below.
\defaultfontfeatures{Ligatures=TeX}
\setmainfont[Renderer=Basic,Numbers={Proportional,OldStyle}]{Minion Pro}
\setsansfont[Scale=MatchLowercase]{Cabin Regular}
\setmonofont[Scale=MatchLowercase]{Fira Mono}
\setlength{\parindent} {0pt} % No indentation
\setlength{\marginparsep}{10pt} % Separation of margin notes
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Document layout
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Permits a very precise adjustment of all the margins. Since a CV is
% a document where *you* should exhibit *your* preferences, feel free
% to adjust this the way you want.
%
% I am not aware of any good rules here.
\usepackage{geometry}
\geometry{
a4paper,
textwidth = 14.0cm,
textheight = 25.0cm,
marginparwidth = 2.5cm
}
\setlength{\parindent}{0pt} % No indentations for paragraphs
\setlength{\skip\footins}{2cm} % Reduced footer distance
% A nice way to typeset proper ordinal superscripts
\newcommand {\rd}{\textsuperscript{\textup{rd}}\xspace}
\newcommand {\nd}{\textsuperscript{\textup{nd}}\xspace}
\renewcommand{\th}{\textsuperscript{\textup{th}}\xspace}
% To be used to indicate equal contributions of two or more authors in
% a paper.
\newcommand{\authorequal}{\kern-0.1em\textsuperscript{\dagger}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Margins macro
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% This permits you to put some comments into the margins of the
% document; I borrowed this idea from Tufte's works, but in the
% CV, I only use it to indicate durations.
\usepackage{marginnote}
\renewcommand*{\raggedleftmarginnote}{}
\newcommand{\years}[1]{%
% Forces notes to appear on the left
{\reversemarginpar\strut\marginnote{{\small#1}}}%
}
% Required to support footnote references; has to come *after* the
% `marginnote` package, though, because it redefines some things.
\usepackage{scrextend}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Section style
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This styles *all* the sections exactly the same: regular font, with
% small caps.
%
% TODO: Adjust this if you change the font---otherwise, everything will
% look super strange.
\usepackage{sectsty}
\allsectionsfont{\mdseries\scshape}
% Typographical adjustments. If you have longer blocks of texts, such as
% publications, in your CV, this will give the text a more natural look.
%
% TODO: Some people do not like this. If you are among them, just change
% this or remove it
\usepackage{microtype}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Colours
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% TODO: redefine this colour if you do not like it.
\usepackage[usenames,dvipsnames]{color}
\definecolor{cardinal}{RGB}{196, 30, 58}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% PDF setup
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[
bookmarks, % Create PDF bookmarks
colorlinks, % Use the link colour from above
breaklinks % Break links in the text
]{hyperref}
\hypersetup{%
urlcolor=cardinal,
pdfauthor={Georges Lemaître}, % TODO: Add your own name here
pdftitle={Georges Lemaître: Curriculum vitae}, % TODO: Add your own name here
pdfproducer={}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Penalties
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\clubpenalty = 10000
\displaywidowpenalty = 10000
\widowpenalty = 10000
\usepackage[defaultlines=100,all]{nowidow} % rejects all orphaned and widowed lines
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Main document
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
{
\Huge \textsc{Georges Lemaître}
\begin{flushleft}
\scriptsize
\faPhone\space+1 555 2632
\enspace\faEnvelope\space{\href{mailto:[email protected]}{[email protected]}}
\enspace\faHome\space{\href{https://example.com}{example.com}}
\end{flushleft}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section*{Summary}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section*{Research interests}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Cosmology \textbullet{} Astrophysics \textbullet{} Mathematics
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section*{Education}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\years{1927}%
\textbf{Ph.D.}\ in physics at MIT\\[.1cm]
\emph{The gravitational field in a fluid sphere of uniform invariant density according to the theory of relativity}\\[.05cm]
Advisor: Arthur Eddington
\years{1920}%
\textbf{D.Sc.}\ in mathematics at Catholic University of Leuven\\[.1cm]
\emph{l'Approximation des fonctions de plusieurs variables réelles}\\[.05cm]
Advisor: Charles de la Vallée-Poussin\\[0.2cm]
\years{1911--1914}%
Studies of civil engineering at Catholic University of Leuven
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section*{Publications}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\years{1946}%
%
G.\ Lemaître, The Primeval Atom --- An Essay on Cosmogony\\[.2cm]
%
\years{1931}%
G.\ Lemaître, L'Hypothèse de l'atome primitif\\[.2cm]
%
\years{1927}%
%
G.\ Lemaître, \emph{Un univers homogène de masse constante et de rayon
croissant rendant compte de la vitesse radiale des nébuleuses
extragalactiques}, Annals of the Scientific Society of Brussels, 47A:41.\\[.2cm]
%
G.\ Lemaître, Discussion sur l'évolution de l'univers
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section*{Honours}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\years{1953}%
Received the inaugural \emph{Eddington Medal}, awarded
by the Royal Astronomical Society\\[.2cm]
%
\years{1950}%
%
Received the decennial prize for applied sciences for the period
1933--1942 by the Belgian government\\[.2cm]
%
\years{1936}%
Received the \emph{Prix Jules Janssen}, the highest
award of the Société astronomique de France\footnote{The French
astronomical society}\\[.2cm]
%
\years{1934}%
Received the \emph{Francqui Prize}, the highest Belgian
scientific distinction, from King Leopold III, proposed by Albert
Einstein, Charles de la Vallée-Poussin, and Alexandre de Hemptinne\\[.2cm]
%
Received the \emph{Mendel Medal} of Villanova University.\\[.2cm]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section*{About this template}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
This document is modelled after the style of
\href{https://bastian.rieck.me}{my} own CV, which you can find
\href{https://bastian.rieck.me/about/cv.pdf}{here}. It was originally
inspired by the CV of \href{http://nitens.org/taraborelli/cvtex}{Dario
Taraborelli}, but has since somewhat evolved---or so I like to tell
myself---from the original template.\\
This document does not offer many special features, except for the
\verb|\years| macro, which can be used to typeset small notes in the
margin of the document. I use them to indicate \emph{durations}, but you
could also repurpose it to have small annotations in the style of Edward
Tufte. In addition, the template uses two special fonts for sans-serif
typesetting and monospace typesetting. I do not tend to use the former
for many things, but you might like it for typesetting the titles of
publications. The latter font type, though, I often use in order to
describe software projects or packages, such as \texttt{PyTorch} or
\texttt{scikit-learn}.\\
That's all there is to it---enjoy the template \& feel free to open
tickets for comments or feedback.
\end{document}