-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
79 lines (65 loc) · 2.17 KB
/
main.tex
File metadata and controls
79 lines (65 loc) · 2.17 KB
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
\documentclass[12pt]{article}
% is this a longform CV or shortform?
\def\longform{1}
\def\allpub{0}
\input{sections/0_packages}
% custom styles
\definecolor{themecol}{HTML}{157A6E}
\definecolor{themecol2}{HTML}{499F68}
\definecolor{currentbg}{HTML}{f2f2f2}
\usepackage[scaled]{helvet}
\usepackage[T1]{fontenc}
\renewcommand\familydefault{\sfdefault}
\setlength\parindent{0pt}
% custom commands
\newcommand{\filledcirc}{\,\,{\leavevmode\put(0mm,1.2mm){\color{themecol}\circle*{1.5mm}}}\hspace{3mm}}
\newcommand\VRule{\color{themecol}\vrule width 2pt}
\newcommand{\titl}{\hspace{-2mm}\color{themecol}\ }
\newcommand{\subtitl}{\color{themecol}\ }
\newcommand{\orcid}{%
\begingroup\normalfont
\includegraphics[height=\fontcharht\font`\B]{images/ORCIDiD_icon128x128.png}%
\endgroup
}
\newcommand{\lcv}[1]{\if\longform1{#1}\fi} % if longform
\newcommand{\scv}[1]{\if\longform0{#1}\fi} % if shortform
\newcommand{\ap}[1]{\if\allpub1{#1}\fi} % use all publications
\newcommand{\ind}[1]{\begin{adjustwidth}{0.5cm}{1.5cm} {#1} \vspace{-1em}\end{adjustwidth}}
\newcommand{\indv}[1]{\begin{adjustwidth}{0.5cm}{1.5cm} {#1}\end{adjustwidth}}
\newcommand{\emp}[1]{\textcolor{themecol}{\textbf{#1}}}
\newcommand{\position}[4][]{
\noindent\begin{tabularx}{\textwidth}{
p{\dimexpr.17\linewidth-2\tabcolsep-1.3333\arrayrulewidth}% column 1
p{\dimexpr.83\linewidth-2\tabcolsep-1.3333\arrayrulewidth}% column 2
}
\hfill {#2} & {\textbf{#3}} {\hfill\textit{#4}} \\
&\ifthenelse{\isempty{#1}}
{}% if #1 is empty
{\if\longform1{#1}\fi}
\end{tabularx}
\if\longform0{\vspace{-1em}}\fi
\if\longform1{\vspace{0.5em}}\fi
}
\def\Vrulefill#1#2{
\leavevmode%
\hskip-5pt%
\leaders%
\vtop{\hsize=.0025in\vskip#1#2}%
\hfill%
\hskip.3in%
}
\def\secrule{\Vrulefill{-6pt}{-}}
% main body
\begin{document}
\input{sections/0_title}
\input{sections/0_address}
\input{sections/current}
\input{sections/academic_positions}
\input{sections/awards}
\input{sections/leadership_positions}
\input{sections/service}
\input{sections/mentoring}
\input{sections/public_outreach}
\input{sections/presentations}
%\input{sections/publications}
\end{document}