forked from katyhuff/CV
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcv.tex
More file actions
169 lines (128 loc) · 6.53 KB
/
cv.tex
File metadata and controls
169 lines (128 loc) · 6.53 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
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
%______________________________________________________________________________________________________________________
% @brief LaTeX2e Resume for Kathryn D. Huff
\documentclass[margin,line]{admin/resume}
\usepackage[breaklinks]{hyperref}
\def\UrlBreaks{\do\/\do-}
\usepackage{doi}
\hypersetup{
colorlinks=true,%
filecolor=magenta,%
urlcolor=cyan,%
breaklinks=true
}
\urlstyle{same}
\usepackage{fontawesome5} % for GitHub logo
\usepackage{etoolbox}
\usepackage[backend=biber,style=numeric,sorting=nyt,
natbib=true,firstinits=true,uniquename=false,defernumbers=true]{biblatex}
\addbibresource{cv.bib}
% Bold my name in bibliography -- taken from https://www.hansenlab.org/cv_bibliography_tex
%
% To use, see the current bib file. I am including the rest of his annotations just in case, but I don't see myself necessarily using them...
% Perhaps if I become a professor? You will need to add the keywords and auth+an sections manually (Zotero can't do this yet), so just use Zotero to create the bib items and copy them in manually.
% This will get tedious if you get lazy, so DON'T. :-)
\renewcommand*{\mkbibnamegiven}[1]{
\ifitemannotation{highlight}
{\textbf{#1}}
{#1}}
\renewcommand*{\mkbibnamefamily}[1]{
\ifitemannotation{highlight}
{\textbf{#1}}
{#1}%
\ifitemannotation{first}
{\textsuperscript{*}}
{}%
\ifitemannotation{corresponding}
{$^\dagger$}
{}%
}%%
\newcommand{\cvbibsection}[2]{
\section{\mysidestyle #1}
\vspace{0mm}
\printbibliography[heading=none,keyword=#2]
}
%______________________________________________________________________________________________________________________
\begin{document}
\name{\Large Liam M. Pohlmann}
\begin{resume}
% Contact Information
\input{src/contact.tex}
%__________________________________________________________________________________________________________________
% Resume Objective
%\section{\mysidestyle Objective}
%Seeking research and teaching opportunities in nuclear engineering and scientific computation.%
%__________________________________________________________________________________________________________________
% Research Interests
\section{\mysidestyle Research\\Interests}
Advance nuclear reactors, neutral particle transport, reactor multiphysics, scientific computing, open source software.
%
%__________________________________________________________________________________________________________________
% Academic Appointments
% \vspace{-2mm}
%\section{\mysidestyle Academic\\Appointments}
% \vspace{-2mm}\\\vspace{-3mm}%
%__________________________________________________________________________________________________________________
% Education
\input{src/education.tex}
%__________________________________________________________________________________________________________________
% Research Experience
\input{src/research-experience.tex}
%__________________________________________________________________________________________________________________
% Honors and Awards
\input{src/honors-and-awards.tex}
%__________________________________________________________________________________________________________________
% Grants Awarded
%__________________________________________________________________________________________________________________
% Begin publications
\nocite{*}
%__________________________________________________________________________________________________________________
% Books YO!!!
%__________________________________________________________________________________________________________________
% Journal Publications
% \section{\mysidestyle Journal\\Publications}
%__________________________________________________________________________________________________________________
% Submitted Journal Publications
% \vspace{-2mm}
%\section{\mysidestyle Submitted\\Journal\\Publications}
% Submitted Journal Publications \vspace{-2mm}\\\vspace{-3mm}%
%__________________________________________________________________________________________________________________
% Conference Publications
\cvbibsection{Conference Papers}{ConfPaper}
%__________________________________________________________________________________________________________________
% Editorials
%__________________________________________________________________________________________________________________
% Congressional Testimony
%__________________________________________________________________________________________________________________
% Technical Reports
\cvbibsection{Technical Reports}{TechReport}
%__________________________________________________________________________________________________________________
% Other Publications
%__________________________________________________________________________________________________________________
% Software
%__________________________________________________________________________________________________________________
% Media
%__________________________________________________________________________________________________________________
% Invited Talks
%__________________________________________________________________________________________________________________
% Teaching Experience
\input{src/teaching-experience.tex}
%__________________________________________________________________________________________________________________
% Advising
%__________________________________________________________________________________________________________________
% Computer Skills
\input{src/computer-skill.tex}
%__________________________________________________________________________________________________________________
% Professional, Student Organizations
\input{src/organizations.tex}
%__________________________________________________________________________________________________________________
% Consulting
%__________________________________________________________________________________________________________________
% References
\section{\mysidestyle References}
\textsl{Available upon request}
%______________________________________________________________________________________________________________________
%__________________________________________________________________________________________________________________
\end{resume}
\end{document}
%______________________________________________________________________________________________________________________
% EOF