summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--resume.tex78
1 files changed, 78 insertions, 0 deletions
diff --git a/resume.tex b/resume.tex
new file mode 100644
index 0000000..f679d3e
--- /dev/null
+++ b/resume.tex
@@ -0,0 +1,78 @@
+\documentclass[
+ %a4paper, % Uncomment for A4 paper size (default is US letter)
+ colorlinks,
+ linkcolor=true
+ 11pt, % Default font size, can use 10pt, 11pt or 12pt
+]{resume} % Use the resume class
+\usepackage[utf8]{inputenc}
+\usepackage{tabularx}
+
+%----------------------------------------------------------------------------------------
+
+\begin{document}
+
+%----------------------------------------------------------------------------------------
+% HEADER
+%----------------------------------------------------------------------------------------
+
+% This is a two column minipage, left side with your name and job title
+% and on the right side some basic details and contact information
+\begin{minipage}[t]{0.4\textwidth}
+ \vspace{0pt} % Trick for alignment
+ %\includegraphics[width=100pt]{profile.jpg}
+ \textbf{\Huge{YOUR NAME}}
+ \huge{YOUR TITLE}
+\end{minipage}%
+\hfill% horizontal space fill
+\begin{minipage}[t]{0.6\textwidth}\raggedleft
+ \vspace{0pt} % Trick for alignment
+ \begin{flushleft}
+ \renewcommand{\arraystretch}{1.6} % Default value: 1
+ \begin{tabular}{ r r }
+ % can add more rows here or columns, it's normal tabular env
+ Location: CITY, COUNTRY & Email: \href{mailto:USER@EXAMPLE.COM}{USER@EXAMPLE.COM} \\
+ Languages: \emph{English}, \emph{OTHER} & Website: \href{https://EXAMPLE.COM}{EXAMPLE.COM} \\
+ \end{tabular}
+ \end{flushleft}
+\end{minipage}
+
+%----------------------------------------------------------------------------------------
+% SKILLS AND TECHNOLOGIES SECTION
+%----------------------------------------------------------------------------------------
+
+\begin{rSection}{Skills \& Technologies}
+\begin{table}[h]
+\centering
+\begin{tabular}{llll}
+\textbf{Skills} & \textbf{Technologies} & \textbf{Other} \\
+Statistical analysis & Machine learning & R, rshiny, Rmd \\
+Experimental design & General linear models & \LaTeX \\
+\end{tabular}
+\end{table}
+
+\end{rSection}
+%----------------------------------------------------------------------------------------
+% WORK EXPERIENCE SECTION
+%----------------------------------------------------------------------------------------
+\begin{rSection}{Work Experience}
+ \begin{rSubsection}{EMPLOYER NAME}
+ {MONTH YEAR - MONTH YEAR}
+ {JOB TITLE}
+ {CITY, STATE}
+ \item DESCRIPTION
+ \end{rSubsection}
+\end{rSection}
+
+%----------------------------------------------------------------------------------------
+% EDUCATION SECTION
+%----------------------------------------------------------------------------------------
+\begin{rSection}{Education}
+ \begin{rSubsection}{DEGREE NAME}
+ {MONTH YEAR - MONTH YEAR}
+ {SCHOOL NAME}
+ {CITY, STATE}
+ \item DESCRIPTION
+ \end{rSubsection}
+\end{rSection}
+
+\end{document}