-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.tex
231 lines (187 loc) · 9.17 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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%% Simple LaTeX CV Template %%%%%%%%%%%%%%%%%%%%%%%%
% _author_: Mitchell Jones
% _email_: rmjones7@illinois.edu
% forked from minimal-resume (github.com/arunlakshmanan)
% modified from the Simple LaTeX CV Template (github.com/kscottz)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%% Document Setup %%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[10pt]{article}
% Input details here:
\newcommand{\authorname}{Robert Mitchell Jones}
\newcommand{\tel}{(860) 670-4546}
\newcommand{\addr}{Urbana IL, 61801}
\newcommand{\email}{\href{mailto:mjones4546@aol.com}{mjones4546@aol.com}}
\newcommand{\github}{\href{http://github.com/rmjones7}{github.com/rmjones7}}
\newcommand{\website}{\href{www.robertmitchelljones.com}{robertmitchelljones.com}}
\usepackage{natbib}
\usepackage{bibentry}
% This is a helpful package that puts math inside length specifications
\usepackage{calc}
\usepackage{textcomp}
% Layout: Puts the section titles on left side of page
\reversemarginpar
% Setup colors
\usepackage{color}
\definecolor{darkblue}{rgb}{0.0,0.0,0.3}
\definecolor{lightgray}{rgb}{0.5,0.5,0.5}
%% Use these lines for letter-sized paper
\usepackage[paper=letterpaper,
%includefoot, % Uncomment to put page number above margin
marginparwidth=1.00in, % Length of section titles
marginparsep=.05in, % Space between titles and text
margin=0.75in,
includemp]{geometry}
%% More layout: Get rid of indenting throughout entire document
\setlength{\parindent}{0in}
%% This gives us fun enumeration environments. compactitem will be nice.
\usepackage{paralist}
%% Last updated footer
\usepackage{fancyhdr}
\usepackage[en-US]{datetime2}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\fancyfoot[C]{\color{lightgray}\footnotesize Last updated on \today}
\pagestyle{fancy}
\pagenumbering{gobble}
% Finally, give us PDF bookmarks
\usepackage{hyperref}
\hypersetup{colorlinks,breaklinks,pageanchor=false,
linkcolor=darkblue,urlcolor=darkblue,
anchorcolor=darkblue,citecolor=darkblue}
%%%%%%%%%%%%%%%%%%%%%%%% End Document Setup %%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%% Helper Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%%
% The title (name) with a horizontal rule under it
%
% Usage: \makeheading{name}
%
% Place at top of document. It should be the first thing.
\newcommand{\makeheading}%
{\vspace*{-2.5em}%
\hspace*{-\marginparsep minus \marginparwidth}%
\begin{minipage}[t]{\textwidth+\marginparwidth+\marginparsep}%
{\Huge \hspace{-1.20em} \authorname}%
\end{minipage}
\hfill%
\begin{minipage}[t]{\textwidth}%
\begin{flushright}%
\vspace{-4.0em}%
\tel \\
\email \\
\github \\
\website
\end{flushright}
\end{minipage}}
% The section headings
%
% Usage: \section{section name}
%
% Follow this section IMMEDIATELY with the first line of the section
% text. Do not put whitespace in between. That is, do this:
%
% \section{My Information}
% Here is my information.
%
% and NOT this:
%
% \section{My Information}
%
% Here is my information.
%
% Otherwise the top of the section header will not line up with the top
% of the section. Of course, using a single comment character (%) on
% empty lines allows for the function of the first example with the
% readability of the second example.
\renewcommand{\section}[2]%
{\pagebreak[2]\vspace{1.3\baselineskip}%
\phantomsection\addcontentsline{toc}{section}{#1}%
\hspace{0in}%
\marginpar{
\raggedright \scshape #1}#2}
% An itemize-style list with lots of space between items
\newenvironment{outerlist}[1][\enskip\textbullet]%
{\begin{itemize}[#1]}{\end{itemize}%
\vspace{-.6\baselineskip}}
% An environment IDENTICAL to outerlist that has better pre-list spacing
% when used as the first thing in a \section
\newenvironment{lonelist}[1][\enskip\textbullet]%
{\vspace{-\baselineskip}\begin{list}{#1}{%
\setlength{\partopsep}{0pt}%
\setlength{\topsep}{0pt}}}
{\end{list}\vspace{-.6\baselineskip}}
% An itemize-style list with little space between items
\newenvironment{innerlist}[1][\enskip\textbullet]%
{\begin{compactitem}[#1]}{\end{compactitem}}
% To add some paragraph space between lines.
% This also tells LaTeX to preferably break a page on one of these gaps
% if there is a needed pagebreak nearby.
\newcommand{\blankline}{\quad\pagebreak[2]}
% Software macros
\newcommand \CPP {{C\nolinebreak[4]\hspace{-.05em}\raisebox{.4ex}{\tiny\bf ++}}}
%%%%%%%%%%%%%%%%%%%%%%%% End Helper Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%% Begin CV Document %%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\nobibliography{ref}
\bibliographystyle{abbrvnat}
\makeheading
\section{Objectives}
I want to work with a community of researchers to put to use my skills in robotics and control systems and build creative solutions in the world of autonomous systems.
\section{Education}
\textbf{M.S. Mechanical Engineering} \hfill \textbf{Sept 2015 - }\textbf{May 2017}\\
\textit{Academic Adviser: Professor Naira Hovakimyan}\\
\textit{Thesis: Aerial Manipulation for Indoor Applications}\\
\textit{\href{http://www.mechse.illinois.edu/}
{University of Illinois at Urbana-Champaign},
Urbana, IL.} \bigskip
\textbf{B.S. Mechanical Engineering} \hfill \textbf{Sept 2011 - May 2015}\\
\textit{\href{http://uri.edu/}
{University of Rhode Island},
Kingston, RI.}
\blankline
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Page break
\section{Relevant Coursework}
\textit{Robust Adaptive Control, Optimum Control Systems, Advanced Robotics Planning, Analysis of Nonlinear Systems, Control of Complex Systems, Control Systems Theory \& Design.}
\blankline
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Page break
\section{Experience}
\href{http://naira.mechse.illinois.edu/}{\textbf{Advanced Controls Research Laboratory}, Urbana, IL.}
\hfill \textbf{Aug 2015 - }\textbf{present} \\
\textit{Graduate Research Assistant}%
\begin{outerlist}
\item Designed and built a small aerial manipulator for use in indoor environments. Conceptualized and developed the aerial quadrotor platform used in multiple research projects throughout the lab. Designed and prototyped a two-link serial manipulator, with a unique cable actuation system, to be used in aerial manipulation applications. Modeled and simulated the dynamics of both the quadrotor, manipulator, and their coupling using MATLAB and Simulink. Developed a novel control augmentation scheme to stabilize the aerial manipulator in the presence of disturbance and unknown payloads. Implemented control algorithms, using C, on the Crazyflie flight controller. A full outline of this project, and its results, can be found in my master's thesis.
\item Consistently involved in development of robotic hardware for various ongoing projects in the lab.
\end{outerlist}
\blankline
\href{https://ti.arc.nasa.gov/}{\textbf{NASA Ames Research Center}, Moffett Field, CA.}
\hfill \textbf{June 2016 - Aug 2016} \\
\textit{Graduate Intern}%
\begin{outerlist}
\item Designed and built an aerial manipulator system for use on a small quadrotor.
\item Programmed an onboard controller for execution of manipulator commands during flight.
\item Modeled manipulator dynamics in Simulink and developed method for
stabilizing vehicle during normal operation and highly dynamic maneuvers.
\end{outerlist}
\blankline
\href{http://greensightag.com/}{\textbf{Greensight Agronomics}, Boston, MA.}
\hfill \textbf{June 2015 - Sept 2015} \\
\textit{Mechanical Engineer \& UAV Pilot}%
\begin{outerlist}
\item Developed subsystems for an early-stage startup company delivering
autonomous plant monitoring solutions to the agricultural and recreational industries.
\item Flew contracted on-site missions mapping various farms, golf courses, athletic fields, etc.
\end{outerlist}
\blankline
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Page break
\section{Technical Summary}
I have strong experience with classical control theory as well as various methods of vehicle motion planning, in both simulation and implementation, using tools like \textbf{MATLAB} and \textbf{Simulink}, \textbf{C}/\textbf{\CPP}, Python, ROS, GDB, and Git/Github.
%Working at NASA Ames, I gained more experience with embedded system programming where I developed the platform and onboard controller for an aerial two-link manipulator.
%I am adept at writing \textbf{C}/\textbf{\CPP} software for embedded systems, \textbf{Python} for rapid prototyping and high-level decision making, \textbf{ROS} packages for communication services, and \textbf{MATLAB} and \textbf{Simulink} models for analysis and design. I have primarily developed software for ARM-based processors running Linux/FreeRTOS environments.
\newpage
\section{Publications}
\begin{lonelist}
\item \bibentry{JonesThesis2017}
\item \bibentry{Jones_undated-hi}
\item \bibentry{Marinho2016-fo}
\end{lonelist}
\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%% End CV Document %%%%%%%%%%%%%%%%%%%%%%%%%%%%%