-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresume.tex
197 lines (154 loc) · 4.4 KB
/
resume.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
\documentclass[a4paper, oneside, final]{scrartcl}
\usepackage{soul}
\usepackage{scrpage2}
\usepackage{titlesec}
\usepackage{marvosym}
\usepackage[cm]{fullpage}
\usepackage{multicol}
\usepackage[dvipsnames,svgnames]{xcolor}
\usepackage[T1]{fontenc}
%define our custom colors
\definecolor{blue}{HTML}{384150}
\definecolor{liteblue}{HTML}{abb4c4}
\definecolor{orange}{HTML}{c8542e}
%deal with the columns
\setlength{\parskip}{0pt}
\setlength{\columnseprule}{0pt}
\setlength{\columnsep}{30pt}
\raggedcolumns
%shrink title spacing
\titlespacing\section{0pt}{12pt plus 4pt minus 2pt}{4pt plus 4pt minus 4pt}
\titlespacing\subsection{0pt}{12pt plus 4pt minus 2pt}{4pt plus 4pt minus 4pt}
\titlespacing\subsubsection{0pt}{12pt plus 4pt minus 2pt}{4pt plus 4pt minus 4pt}
\titleformat{\section}{\large\bf\scshape\raggedright}{}{0em}{}[\titlerule]
\pagestyle{scrheadings}
\renewcommand{\headfont}{\normalfont\rmfamily\scshape}
%custom footer
\cofoot{
\so{ {\Large\Letter} [email protected] \ {\Large\Telefon} +5 555.555.5555 } \\
\so{www.mysite.com}
}
\begin{document}
\begin{center}
%START title%
\begin{flushleft}
\textcolor{orange}{\textsc{\Huge{\so{First Last Name}}}}
\end{flushleft}
%END title%
%\section{\textcolor{blue}{Summary}}
\begin{flushleft}
%summary/objective
\colorbox{liteblue} {
\parbox {\columnwidth }{
Summary or Objective Statement
}}
\end{flushleft}
%Professional Experience Section
\section{\textcolor{blue}{Professional Experience}}
%START highlight section%
%highlight section title
\begin{flushleft}
\parbox{\textwidth} {
\colorbox{LightGrey} {
\textsc{\small{Highlight Skill Title}}
}
}
\end{flushleft}
%highlight section description
\begin{flushleft}
\hspace{2em}
Highlight Skill Description
\end{flushleft}
%END highlight section%
%BEGIN subskill proficiency assortment%
%subskill proficiency category/title
\parbox{\textwidth} {
\colorbox{LightGrey} {
\textsc{\small{Subskill Proficiency Category/Title}}
}
}
%subskill proficiency lists
\begin{multicols}{2}
%subskill proficiency list 1
\begin{multicols}{2}
\begin{flushleft}
\textsc{Proficiency Level 1}
\end{flushleft}
\vspace{12em}
Skill Title 1, Skill Title 2
\end{multicols}
%subskill proficiency list 2
\begin{multicols}{2}
\begin{flushleft}
\textsc{Proficiency Level 2}
\end{flushleft}
\vspace{12em}
Skill Title 1, Skill Title 2
\end{multicols}
\end{multicols}
%END skill assortment%
\section{\textcolor{blue}{Employment}}
%START employment 1%
%employment 1 title
\begin{flushleft}
\parbox{\textwidth} {
\colorbox{LightGrey} {
\textsc{\small{Company}\tiny{(years)}}
}
}
\end{flushleft}
%employment 1 description
\begin{flushleft}
\hspace{2em}Description/Summary
%employment 1 achievments list
\begin{itemize} \itemsep1pt \parskip0pt \parsep0pt
\item achievment 1
\item achievment 2
\end{itemize}
\end{flushleft}
%END hointer%
%Education Section
\section{\textcolor{blue}{Education}}
%Universities List
\begin{multicols}{2}
%Uni 1 title
\parbox{\columnwidth} {
\colorbox{LightGrey} {
\textsc{\small{University 1}}
}
}
%Uni 1 degree
\begin{flushleft}
\small{Degree}: \bf{\textsc{Degree Earned}} \\
\small{\bf{Graduated in}} \textsc{\bf{\so{Month, Year}}} \\
\end{flushleft}
%Uni 1 achievements
\begin{flushleft}
\small{Achievements}:
\end{flushleft}
\begin{flushleft}
\small{\bf{*}} Achievement 1 \\
\small{\bf{*}} Achievement 2
\end{flushleft}
%Uni 2 title
\parbox{\columnwidth} {
\colorbox{LightGrey} {
\textsc{\small{University 2}}
}
}
%Uni 2 degree
\begin{flushleft}
\small{Degree}: \bf{\textsc{Degree Earned}} \\
\small{\bf{Graduated in}} \textsc{\bf{\so{Month, Year}}} \\
\end{flushleft}
%Uni 2 achievements
\begin{flushleft}
\small{Achievements}:
\end{flushleft}
\begin{flushleft}
\small{\bf{*}} Achievement 1 \\
\small{\bf{*}} Achievement 2
\end{flushleft}
\end{multicols}
\end{center}
\end{document}