From 352892c42936834f3b39052163320aaa354bb085 Mon Sep 17 00:00:00 2001 From: Chris Sobczak Date: Sun, 21 Jun 2026 23:58:46 -0700 Subject: Add bare resume template --- resume.tex | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 resume.tex (limited to 'resume.tex') 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} -- cgit v1.2.3