-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.tex
103 lines (70 loc) · 3.35 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
%-------------------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%-------------------------------------------------------------------------------
\documentclass{resume} % Use the custom resume.cls style
\usepackage[left=0.75in,top=0.6in,right=0.75in,bottom=0.6in]{geometry} % Document margins
\newcommand{\tab}[1]{\hspace{.2667\textwidth}\rlap{#1}}
\newcommand{\itab}[1]{\hspace{0em}\rlap{#1}}
\name{\input{imports/name.txt}} % Your name
\address{\input{imports/address.txt}} % Your address
\address{\input{imports/contactinfo.txt}} % Your phone number and email
\begin{document}
%-------------------------------------------------------------------------------
% EDUCATION SECTION
%-------------------------------------------------------------------------------
\begin{rSection}{Education}
{\bf University of Florida} \hfill { Gainesville, FL }
\\ \em { Bachelors of Science in Electrical Engineering, Cum Laude }
\hfill \em { January YYYY }
\\ { GPA 0.00/4.00 }
\end{rSection}
%-------------------------------------------------------------------------------
% TECHNICAL STRENGTHS SECTION
%-------------------------------------------------------------------------------
\begin{rSection}{Core Information}
\vspace{-0.2em}
\begin{tabular}{ @{} >{\bfseries}l @{\hspace{6ex}} l }
Programming Languages & C, Python, Bash, Assembly, VHDL, C\#, Siglab \\
Software \& Tools & Ceedling, Vivado/SDK, Valgrind, GDB, Modelsim, Jenkins, Docker, Linux, Atlassian \\
Methodologies & Continuous Integration, Test Driven Development (TDD), Agile, Genetic Algorithms \\
Additional Attributes & Certs, Clubs, Etc \\
\end{tabular}
\end{rSection}
%-------------------------------------------------------------------------------
% WORK EXPERIENCE SECTION
%-------------------------------------------------------------------------------
\begin{rSection}{Experience}
\begin{rSubsection}{Company 1, Inc.}
{Anywhere, AK}
{Position Title}
{Month YYYY - Present}
\item Here the user can list resume bullet points
\item Here is a second pullet point. I recommend allowing the document to wrap rather than line limiting. This reduces the git diff on changes.
\end{rSubsection}
\begin{rSubsection}{Company 2, Inc.}
{Anywhere, AZ}
{Position Title}
{Month YYYY - Month YYYY}
\item Generally your most recent job should be first
\item Here is another item
\end{rSubsection}
\end{rSection}
%-------------------------------------------------------------------------------
\begin{rSection}{Relevant Courses}
\itab{\textbf{}} \tab{} \tab{\textbf{}}
\\ \itab{Comment out this section if not applicable}
\\ \itab{Computer Architecture } \tab{} \tab{Reconfigurable/Parallel Computing}
\\ \itab{Microprocessor Applications} \tab{} \tab{Digital Design}
\\ \itab{Linear Algebra} \tab{} \tab{}
\end{rSection}
%-------------------------------------------------------------------------------
% TECHNICAL STRENGTHS SECTION
%-------------------------------------------------------------------------------
\begin{rSection}{Projects}
\begin{rSubsection}{}{}{}{}
\vspace{-0.8em}
\item Sometimes it can be helpful to have a section describing personal projects.
\item Maybe you have more than one!
\end{rSubsection}
\end{rSection}
\end{document}