-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume_main.tex
72 lines (54 loc) · 1.55 KB
/
resume_main.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
% Document class and font size
\documentclass[a4paper,9pt]{extarticle}
% Packages
\usepackage[utf8]{inputenc}
\usepackage{helvet}
\usepackage[T1]{fontenc}
\usepackage{geometry}
\geometry{a4paper, margin=0.6in}
\usepackage{titlesec}
\usepackage{enumitem}
\usepackage[hidelinks]{hyperref}
\usepackage{graphicx}
% Formatting
\setlist{noitemsep}
\setlist[itemize]{leftmargin=0.22in}
\titleformat{\section}{\large\bfseries}{\thesection}{1em}{}[\titlerule]
\titlespacing*{\section}{0pt}{\baselineskip}{\baselineskip}
% Ensure that generated pdf is machine readable/ATS parsable
\pdfgentounicode=1
\renewcommand\labelitemi{$\vcenter{\hbox{\tiny$\bullet$}}$}
\renewcommand\labelitemii{$\vcenter{\hbox{\tiny$\bullet$}}$}
% Begin document
\begin{document}
% Input the content file
\input{resume_content}
% Disable page numbers
\pagestyle{empty}
% Header
\begin{center}
\textbf{\Large \name}\\[4pt]
\href{mailto:\email}{\underline{\email}} \raisebox{0.4ex}{\scalebox{0.5}{$\bullet$}}
\href{tel:\phone}{\underline{\phone}} \raisebox{0.4ex}{\scalebox{0.5}{$\bullet$}}
\href{\linkedinurl}{\underline{\linkedin}} \raisebox{0.4ex}{\scalebox{0.5}{$\bullet$}}
\href{\githuburl}{\underline{\github}}
\end{center}
% Summary
\noindent
\summary
% Work Experience
\section*{Work Experience}
\workexperience
% Education
\section*{Education}
\noindent
\textbf{\university}, \universitylocation \hfill \educationdates\\
\textit{\degree} \\[4pt]
\educationdescription
% Open Source Projects
\section*{Open Source Projects}
\opensourceprojects
% Skills
\section*{Skills}
\skills
\end{document}