-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.tex
280 lines (258 loc) · 8.79 KB
/
resume.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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
\documentclass[10pt]{article}
\usepackage{geometry} % to adjust margins
\usepackage{changepage} % to use \adjustwith (better indentation)
\usepackage{ifthen} % to use conditionals (\ifthenelse)
\usepackage[dvipsnames]{xcolor} % for many colors
\usepackage{hyperref} % to include links
\usepackage[
indent = 0em,
skip = 0em,
]{parskip} % to adjust paragraph indentation and surrounding whitespace
% page margins
\geometry{
top = 0.5in,
bottom = 0.5in,
left = 0.5in,
right = 0.5in,
}
% no page number
\pagestyle{empty}
\hypersetup{
pdftitle = Theodore-Nguyen-Resume,
pdfauthor = TheodoreNguyen,
urlbordercolor = NavyBlue,
% hidelinks % uncomment to show borders around links
}
\urlstyle{} % leave blank or use "same"
% LATEX MODAL FONT COMMANDS:
% --------------------------------------------- %
% weights --- \mdseries, \bfseries
% shapes --- \upshape, \itshape, \scshape, \slshape
% families --- \rmfamily, \sffamily, \ttfamily
% FONTS AND FORMATTING
% --------------------------------------------- %
\newcommand{\rTitle}[1]{{\huge\bfseries #1}\\}
\newcommand{\rPhoneNumber}[3]{(#1)\,#2\,--\,#3}
\newcommand{\rSectionTitle}[1]{{\Large\scshape #1}}
\newcommand{\rEntryTitle}[1]{{\bfseries #1}}
\newcommand{\rEntryDate}[1]{{\mdseries #1}}
\newcommand{\rEntryCompany}[1]{{\itshape #1}}
\newcommand{\rEntryLocation}[1]{{\itshape #1}}
% HEADER
% --------------------------------------------- %
\newcommand{\rMakeTitle}{
\begin{center}
\rTitle{Theodore Nguyen}
\vspace{0.75ex}
\rPhoneNumber{714}{603}{9231} \;$\diamond$\; [email protected] \\
\url{https://www.linkedin.com/in/theodoretpnguyen/} \\
\url{https://github.com/theodoretnguyen}
\vspace{0.5ex}
\end{center}
}
% ENVIRONMENTS
% --------------------------------------------- %
% Resume Section
% #1 : section title
\newenvironment{rSection}[1]
{
\rSectionTitle{#1}
\vspace{0.75ex}
\hrule
\vspace{0.75ex}
\begin{adjustwidth}{0ex}{0ex}
}
{
\end{adjustwidth}
\vspace{0.8ex}
}
% EXAMPLE USAGE
% --------------------------------------------- %
% \begin{rSection}{SECTION TITLE}
% ENTRIES, CONTENT, etc.
% \end{rSection}
% --------------------------------------------- %
% Resume Entry with Paragraph Description
% #1 : entry title
% #2 : date
% #3 : company
% #4 : location
\newenvironment{rEntryWithParagraph}[4]
{
\begin{adjustwidth}{2ex}{0ex}
\rEntryTitle{#1} \hfill \rEntryDate{#2}
% if company is provided, print company and location on separate line.
% otherwise, only print entry title and/or date.
\ifthenelse{\equal{#3}{}}{}{
\\ \rEntryCompany{#3} \hfill \rEntryLocation{#4}
}
\vspace{0.25ex} \\
}
{
\end{adjustwidth}
\vspace{0.5ex}
}
% EXAMPLE USAGE
% --------------------------------------------- %
% \begin{rEntryWithParagraph}{ENTRY TITLE}
% {DATE}
% {COMPANY}
% {LOCATION}
% DESCRIPTION
% \end{rEntryWithParagraph}
% --------------------------------------------- %
% Resume Entry with List
% #1 : entry title
% #2 : date
% #3 : company
% #4 : location
\newenvironment{rEntryWithList}[4]
{
\begin{adjustwidth}{2ex}{0ex}
\rEntryTitle{#1} \hfill \rEntryDate{#2}
% if company is provided, print company and location on separate line.
% otherwise, only print entry title and/or date.
\ifthenelse{\equal{#3}{}}{}{
\\ \rEntryCompany{#3} \hfill \rEntryLocation{#4}
}
\vspace{0.25ex}
\begin{list}{$\cdot$}{
\leftmargin = 0ex
\topsep = 0ex
\itemsep = 0ex
}
}
{
\end{list}
\end{adjustwidth}
\vspace{0.5ex}
}
% EXAMPLE USAGE
% --------------------------------------------- %
% \begin{rEntryWithList}{ENTRY TITLE}
% {DATE}
% {COMPANY}
% {LOCATION}
% \item ITEM
% \end{rEntryWithList}
% --------------------------------------------- %
% Resume Skills
\newenvironment{rSkills}
{
\begin{adjustwidth}{2ex}{0ex}
\begin{list}{}{
\leftmargin = 0ex
\topsep = 0ex
\itemsep = 1ex
}
}
{
\end{list}
\end{adjustwidth}
\vspace{0.5ex}
}
% EXAMPLE USAGE
% --------------------------------------------- %
% \begin{rEntryWithDescription}{ENTRY TITLE}
% DESCRIPTION
% \end{rEntryWithDescription}
% --------------------------------------------- %
\begin{document}
\rMakeTitle
% EDUCATION
% --------------------------------------------- %
\begin{rSection}{Education}
\begin{rEntryWithParagraph}
{University of California, Los Angeles (UCLA)}
{June 2023}
{}
{}
B.S.\ in Applied Mathematics with a Specialization in Computing \\
Overall GPA: 3.903
\end{rEntryWithParagraph}
\begin{rEntryWithParagraph}
{Relevant Coursework}
{}
{}
{}
Linear Algebra, Probability and Statistics, Applied Numerical Methods, Mathematical Modeling, Linear and Nonlinear Systems of Differential Equations, Introduction to Machine Learning
\end{rEntryWithParagraph}
\end{rSection}
% SKILLS
% --------------------------------------------- %
\begin{rSection}{Technical Skills}
\begin{rSkills}
\item \rEntryTitle{Programming Languages} -- C++, Python, Java, HTML, CSS, JavaScript, PHP, MATLAB, Lua
\item \rEntryTitle{Markup Languages} -- {\LaTeX}, Markdown
\item \rEntryTitle{Developer Tools} -- Vim, Git
\end{rSkills}
\end{rSection}
% SPECIALIZATIONS AND COURSE CERTIFICATES
% --------------------------------------------- %
\begin{rSection}{Specializations and Course Certificates}
\begin{rEntryWithParagraph}
{\href{https://www.coursera.org/account/accomplishments/specialization/certificate/A6624TCC8KLB}{Machine Learning Specialization}}
{Nov.\ 2022}
{Coursera}
{}
Supervised Machine Learning: Regression and Classification; Advanced Learning Algorithms; Unsupervised Learning, Recommenders, Reinforcement Learning
\end{rEntryWithParagraph}
\end{rSection}
% PROJECTS
% --------------------------------------------- %
\begin{rSection}{Projects}
\begin{rEntryWithList}
{Linear Support Vector Machine (SVM) Math Task}
{Aug.\ 2022}
{Python}
{}
\item Designed an interactive Jupyter notebook with documented code snippets and detailed math explanations to showcase step-by-step production of a linear SVM; accelerated mathematical understanding of 40 students
\item Developed 11 Python functions, utilizing NumPy and Matplotlib to display clear data visualizations of the SVM model
\end{rEntryWithList}
\begin{rEntryWithList}
{Penguins Species (Supervised Machine Learning Classification)}
{June 2021 -- Aug. 2021}
{Python}
{}
\item Collaborated with a team of 3 students weekly to design a penguin species classification system using scikit-learn, NumPy, Matplotlib, and pandas on a 300+ penguin dataset
\item Implemented 2-D machine learning models such as multinomial logistic regression, decision trees, and support vector machines to analyze how physical and geographical features impact penguin species classification
\end{rEntryWithList}
\end{rSection}
% PROFESSIONAL EXPERIENCE
% --------------------------------------------- %
\begin{rSection}{Professional Experience}
\begin{rEntryWithList}
{UCLA Academic Advancement Program}
{Sep.\ 2021 -- Present}
{Computer Programming Peer Learning Facilitator}
{Los Angeles, CA}
\item Lead four 1.5 hour review sessions per week for 30 peers to ask questions and accelerate their C++ programming skills
\item Develop clear and coherent semi-weekly handouts, review worksheets, and presentation slides using Pandoc, Markdown, and {\LaTeX}
\end{rEntryWithList}
\begin{rEntryWithList}
{Juni Learning}
{Aug.\ 2020 -- Aug.\ 2022}
{Mathematics Instructor}
{San Francisco, CA}
\item Executed Pre-Algebra, Algebra, and Geometry lesson plans for students ages 8-18, while adapting to student needs and interests
\item Communicated with parents on a weekly basis, providing updates on student progress and results from learning assessments in order to foster academic growth
\item Maintained records for 8 students, covering multiple courses and skill levels to cater to students' academic understanding of subject material
\end{rEntryWithList}
\end{rSection}
% HONORS AND AWARDS
% --------------------------------------------- %
\begin{rSection}{Honors \& Awards}
\begin{rEntryWithList}
{Dean's Honors List}
{2020 -- 2022}
{}
{}
\item Earned 3.75+ GPA for 7 quarters (Winter '20, Spring '20, Fall '20, Winter '21, Spring '21, Winter '22, Spring '22)
\end{rEntryWithList}
\end{rSection}
% LANGUAGES
% --------------------------------------------- %
\begin{rSection}{Languages}
English (Native), Vietnamese (Limited Working Proficiency)
\end{rSection}
\end{document}