-
Notifications
You must be signed in to change notification settings - Fork 8
/
resume_template.tex
131 lines (102 loc) · 2.99 KB
/
resume_template.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
\documentclass{article}
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage[protrusion=true,expansion=true]{microtype}
\usepackage{amsmath,amsfonts,amsthm} % Math packages
\usepackage{graphicx} % Enable pdflatex
\usepackage[svgnames]{xcolor} % Colors by their 'svgnames'
\usepackage{xcolor}
\usepackage{fontawesome}
\usepackage{hyperref}
\usepackage{multicol}
\usepackage[margin=0.7in]{geometry}
\textheight=700px % Saving trees ;-)
\usepackage{url}
\frenchspacing % Better looking spacings after periods
\pagestyle{empty} % No pagenumbers/headers/footers
%%% Custom sectioning (sectsty package)
%%% ------------------------------------------------------------
\usepackage{sectsty}
\sectionfont{% % Change font of \section command
\usefont{OT1}{phv}{b}{n}% % bch-b-n: CharterBT-Bold font
\sectionrule{0pt}{0pt}{-5pt}{3pt}}
\newcommand{\MyName}[1]{ % Name
\noindent \Huge \usefont{OT1}{cmr}{b}{n} #1 \hfill
\par \normalsize \normalfont}
\newcommand{\MyLocation}[1]{ % Name
\noindent \usefont{OT1}{cmr}{b}{n} #1 \hfill
\par \normalsize \normalfont}
\newcommand{\MyContact}[1]{ % Slogan (optional)
\large \usefont{OT1}{cmr}{m}{n} #1
\par \normalsize \normalfont}
\newcommand{\NewPart}[1]{\section*{{\color{gray}\uppercase{#1}}}}
\newcommand{\SkillsEntry}[2]{\textbf{#1}: #2}
\newcommand{\ExperienceEntry}[4]{
\noindent \textbf{#1} \hfill
\hfill #2 \par % Duration
\noindent \textit{#3} \par % School
\noindent\hangindent=2em\hangafter=0 \small #4 % Description
\normalsize \par}
\begin{document}
\begin{multicols}{2}
\MyName{FirstName LastName}
\MyLocation{City, Country}
\columnbreak
\MyContact{\faEnvelope : [email protected]}
\MyContact{\faGithub : \href{https://www.github.com/}{github.com/}}
\MyContact{\faLinkedin : \href{https://www.linkedin.com/in/}{linkedin.com/in/}}
\end{multicols}
\NewPart{Qualifications}{}
\begin{itemize}
\item[]{\SkillsEntry{Skill Set 1}{...}}
\item[]{\SkillsEntry{Skill Set 2}{...}}
\item[]{\SkillsEntry{Skill Set 3}{...}}
\end{itemize}
\NewPart{Work experience}{}
\ExperienceEntry
{Position 1}
{Jan 2019-Jan 2019}
{CompanyName 1 $\vert$ City, Country}
{
\begin{itemize}
\item{Responsibilities}
\item{Responsibilities}
\item{Responsibilities}
\end{itemize}
}
\ExperienceEntry
{Position 2}
{Jan 2019-Jan 2019}
{CompanyName 2 $\vert$ City, Country}
{
\begin{itemize}
\item{Responsibilities}
\item{Responsibilities}
\item{Responsibilities}
\end{itemize}
}
\ExperienceEntry
{Position 3}
{Jan 2019-Jan 2019}
{CompanyName 3 $\vert$ City, Country}
{
\begin{itemize}
\item{Responsibilities}
\item{Responsibilities}
\item{Responsibilities}
\end{itemize}
}
\NewPart{Education}{}
\ExperienceEntry
{DegreeName}
{2019 - 2019}
{\href{https://university.website}
{University Name} $\vert$ City, Country}
{}
\ExperienceEntry
{DegreeName}
{2019 - 2019}
{\href{https://university.website}
{University Name} $\vert$ City, Country}
{}
\end{document}