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
|
\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}
|