-
Notifications
You must be signed in to change notification settings - Fork 1
/
developercv.cls
380 lines (336 loc) · 9.46 KB
/
developercv.cls
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Developer CV
% LaTeX Class
% Version 3.0 (07/11/23)
%
% Originally taken from
% https://www.overleaf.com/latex/templates/cv-developer/rdycxzvvnvcc
%
% Authors:
% Adapted by Stypox for use with Curricust
% Based on a template by Omar Roldan
% Based on a template by Jan Vorisek ([email protected])
% Based on a template by Jan Küster ([email protected])
% Modified for LaTeX Templates by Vel ([email protected])
%
% License: MIT
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%----------------------------------------------------------------------------------------
% CLASS CONFIGURATION
%----------------------------------------------------------------------------------------
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{cvtemplate}[2023/10/12 Developer CV class v2.0]
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{extarticle}} % Pass through any options to the base class
\ProcessOptions\relax % Process given options
\LoadClass{extarticle} % Load the base class
%----------------------------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%----------------------------------------------------------------------------------------
\setlength{\parindent}{0mm} % Suppress paragraph indentation
\usepackage[hidelinks]{hyperref} % Required for links but hide the default boxes around links
\pagestyle{empty} % No headers or footers
\usepackage{moresize} % Provides more font size commands (\HUGE and \ssmall)
\usepackage{enumitem}
%----------------------------------------------------------------------------------------
% PAGE LAYOUT
%----------------------------------------------------------------------------------------
\usepackage{geometry} % Required for adjusting page dimensions and margins
\geometry{
paper=a4paper, % Paper size, change to letterpaper for US letter size
top=1.6cm, % Top margin
bottom=1.6cm, % Bottom margin
left=1.6cm, % Left margin
right=1.6cm, % Right margin
headheight=0.75cm, % Header height
footskip=1cm, % Space from the bottom margin to the baseline of the footer
headsep=0.5cm, % Space from the top margin to the baseline of the header
%showframe, % Uncomment to show how the type block is set on the page
}
%----------------------------------------------------------------------------------------
% FONTS
%----------------------------------------------------------------------------------------
\usepackage[utf8]{inputenc} % Required for inputting international characters
\usepackage[T1]{fontenc} % Output font encoding for international characters
\usepackage[default]{raleway}
%\usepackage[defaultsans]{droidsans}
%\usepackage{cmbright}
\renewcommand*\familydefault{\sfdefault} % Force the sans-serif version of any font used
%------------------------------------------------
\usepackage{fontawesome} % Required for FontAwesome icons
% Command to output an icon in a black square box with text to the right
% Arguments:
% 1 the FontAwesome icon name
% 2 the box size
% 3 the text
\newcommand{\icon}[3]{
\vcenteredhbox{\pgfsetfillopacity{0}\colorbox{white}{\pgfsetfillopacity{1}\makebox(#2, #2){\Large\csname fa#1\endcsname}}\pgfsetfillopacity{1}}% Icon and box
\hspace{0.1cm}% Whitespace
\vcenteredhbox{#3}% Text
}
% Command to output an icon in a black square box with text to the right,
% but only if the text is non empty
% Arguments:
% 1 the FontAwesome icon name
% 2 the box size
% 3 the text
\newcommand{\maybeicon}[3]{
\ifx #3\empty \else
\icon{#1}{#2}{#3}\\
\fi
}
%----------------------------------------------------------------------------------------
% GRAPHICS DEFINITIONS
%----------------------------------------------------------------------------------------
\usepackage{tikz} % Required for creating the plots
\usetikzlibrary{shapes, backgrounds}
\tikzset{x=1cm, y=1cm} % Default tikz units
% Command to vertically centre adjacent content
\newcommand{\vcenteredhbox}[1]{% The only parameter is for the content to centre
\begingroup%
\setbox0=\hbox{#1}\parbox{\wd0}{\box0}%
\endgroup%
}
\newcommand{\cvhref}[2]{%
\href{#1}{\smash{\underline{\smash{#2}\vphantom{T}}}\vphantom{#2}}%
}
% Arguments:
% 1 name
% 2 career
% 3 email (optional)
% 4 phone (optional)
% 5 location (optional)
% 6 website (optional)
% 7 github (optional)
% 8 linkedin (optional)
% 9 about me section
% 10 skills section
% 11 sections
\newcommand{\cv}[8]{
\edef\argname{\unexpanded{#1}}%
\edef\argmotto{\unexpanded{#2}}%
\edef\argemail{\unexpanded{#3}}%
\edef\argphone{\unexpanded{#4}}%
\edef\arglocation{\unexpanded{#5}}%
\edef\argwebsite{\unexpanded{#6}}%
\edef\arggithub{\unexpanded{#7}}%
\edef\arglinkedin{\unexpanded{#8}}%
\cv@continued
}
\newcommand{\cv@continued}[3]{
\edef\argsummary{\unexpanded{#1}}%
\edef\argskills{\unexpanded{#2}}%
\edef\argsections{\unexpanded{#3}}%
\begin{minipage}[t]{0.35\textwidth}
\vspace{-\baselineskip}
{\fontsize{16}{20}\textbf{\MakeUppercase{\argname}}}
\vspace{6pt}\\
{\Large \argmotto}
\end{minipage}
\hfill
\begin{minipage}[t]{0.32\textwidth}
\vspace{-\baselineskip}
\maybeicon{Envelope}{11}{\argemail}
\maybeicon{Phone}{11}{\argphone}
\maybeicon{MapMarker}{11}{\arglocation}
\end{minipage}
\begin{minipage}[t]{0.23\textwidth}
\vspace{-\baselineskip}
\maybeicon{Globe}{11}{\argwebsite}
\maybeicon{Github}{11}{\arggithub}
\maybeicon{LinkedinSquare}{11}{\arglinkedin}
\end{minipage}
\ifx \argsummary\empty
% show just the skills full width, if there are any
\argskills
\else
\ifx \argskills\empty
% show just the summary full width
\argsummary
\else
% show summary and skills side by side
\begin{minipage}[t]{0.4\textwidth}
\argsummary
\end{minipage}
\hfill
\begin{minipage}[t]{0.55\textwidth}
\argskills
\end{minipage}
\fi
\fi
\argsections
}
\usepackage{longtable} % Required for tables that span multiple pages
\setlength{\LTpre}{0pt} % Remove default whitespace before longtable
\setlength{\LTpost}{0pt} % Remove default whitespace after longtable
\setlength{\tabcolsep}{0pt} % No spacing between table columns
% Environment to hold a new list of entries
\newenvironment{@entrylist}{
\begin{longtable}[H]{l l}
}{
\end{longtable}
}
\def\Vhrulefill{\leavevmode\leaders\hrule height 0.7ex depth \dimexpr0.4pt-0.7ex\hfill\kern0pt}
% Arguments:
% 1 any non-empty string makes the title be rendered as in a subsection
% 2 the actual text to render as title
\newcommand{\@titlesectionorsubsection}[2]{
\def\temp{#1}\ifx\temp\empty
\MakeUppercase{\textbf{#2}} \hspace{4pt} \Vhrulefill \\%
\else
\textbf{#2} \\%
\fi
}
% Arguments:
% 1 any non-empty string makes the title be rendered as in a subsection
% 2 title
% 3 description (optional)
% 4 entries
% 5 subsections
\newcommand{\@section}[5]{
\begin{minipage}{\textwidth}
\vspace{\baselineskip}
\@titlesectionorsubsection{#1}{#2}
\if #3\empty \else
#3~\\
\fi
\ifx #4\empty \else
\begin{@entrylist}
#4
\end{@entrylist}
\fi
#5
\end{minipage}
}
\newcommand{\sectioneducation}{\@section}
\newcommand{\sectionjob}{\@section}
\newcommand{\sectionproject}{\@section}
% Arguments:
% 1 any non-empty string makes the title be rendered as in a subsection
% 2 title
% 3 description (optional)
% 4 entries
% 5 subsections
\newcommand{\@sectionlist}[5]{
\begin{minipage}{\textwidth}
\vspace{\baselineskip}
\@titlesectionorsubsection{#1}{#2}
\ifx #3\empty \else
\\[-8pt]
#3
\\[-4pt]
\fi
\ifx #4\empty \else
\begin{itemize}[noitemsep,topsep=0pt,parsep=0pt,partopsep=0pt,leftmargin=9pt]
#4
\end{itemize}
\fi
#5
\vspace{12pt}
\end{minipage}
}
\newcommand{\sectionaward}{\@sectionlist}
\newcommand{\sectiontalk}{\@sectionlist}
% Arguments:
% 1 title
% 2 description
\newcommand{\@sectionelement}[2]{
\vspace{\baselineskip}
\@titlesectionorsubsection{}{#1}
#2 \hfill \\
}
\newcommand{\sectionsummary}{\@sectionelement}
\newcommand{\sectionskills}{\@sectionelement}
% Arguments:
% 1 leftmost "when" text (optional)
% 2 leftmost "tags" text (optional)
% 3 bold entry "heading"
% 4 semi-bold italic right-aligned entry qualifier (optional)
% 5 entry "description" text
\newcommand{\@entry}[5]{
\parbox[t]{0.16\textwidth}{% 16% of the text width of the page
\raggedright{
\small
\def\temp{#1}\ifx\temp\empty
\footnotesize{#2}
\else
#1
\def\temp{#2}\ifx\temp\empty\else
\vspace{3pt}
\linebreak
\footnotesize{#2}
\fi
\fi
}
}%
\parbox[t]{0.03\textwidth}{% 3% of space
\hfill
}
&\parbox[t]{0.81\textwidth}{% 81% of the text width of the page
\raggedright{
\textbf{#3}% Entry heading text
\hspace{2pt}
\hfill% Horizontal whitespace
\mbox{}~\hfill{}
{\footnotesize \emph{\fontseries{sb}\selectfont \mbox{#4}}}\\% Right-aligned entry qualifier text
#5 % Entry description text
}
}\\\\
}
% Arguments:
% 1 degree
% 2 institution
% 3 when
% 4 grade (optional)
% 5 details (optional)
\newcommand{\itemeducation}[5]{
\@entry{#3}{#4}{#1}{#2}{#5}
}
% Arguments:
% 1 role
% 2 company
% 3 where (optional)
% 4 when
% 5 topics (optional)
% 6 details (optional)
\newcommand{\itemjob}[6]{
\@entry{#4}{#5}{#1}{
#2%
\if #2\empty \else
\if #3\empty \else
,
\fi
\fi
#3
}{#6}
}
% Arguments:
% 1 name
% 2 technologies
% 3 links (optional)
% 4 when (optional)
% 5 details (optional)
\newcommand{\itemproject}[5]{
\@entry{#4}{#2}{#1}{#3}{#5}
}
% Arguments:
% 1 name
% 2 when
% 3 grade (optional)
\newcommand{\itemaward}[3]{
\item
\ifx #3\empty \else
\textbf{#3},
\fi
\emph{#1},
#2
}
% Arguments:
% 1 name
% 2 event
% 3 when
\newcommand{\itemtalk}[3]{
\item
\textbf{#1},
\emph{#2},
#3
}