-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.tex
172 lines (127 loc) · 3.98 KB
/
cv.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
\documentclass[10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{xstring, xifthen}
%\usepackage[defaultsans]{droidsans}
%\usepackage[default]{comfortaa}
%\usepackage{cmbright}
\usepackage[default]{raleway}
%\usepackage{fetamont}
%\usepackage[default]{gillius}
%\usepackage[light,math]{iwona}
%\usepackage[thin]{roboto}
% set font default
\renewcommand*\familydefault{\sfdefault}
\usepackage[T1]{fontenc}
\usepackage{moresize}
\usepackage{fontawesome}
\usepackage{array}
% use to vertically center content
% credits to: http://tex.stackexchange.com/questions/7219/how-to-vertically-center-two-images-next-to-each-other
\newcommand{\vcenteredinclude}[1]{\begingroup
\setbox0=\hbox{\includegraphics{#1}}%
\parbox{\wd0}{\box0}\endgroup}
% use to vertically center content
% credits to: http://tex.stackexchange.com/questions/7219/how-to-vertically-center-two-images-next-to-each-other
\newcommand*{\vcenteredhbox}[1]{\begingroup
\setbox0=\hbox{#1}\parbox{\wd0}{\box0}\endgroup}
% icon shortcut
\newcommand{\icon}[3] {
\makebox(#2, #2){\textcolor{maincol}{\csname fa#1\endcsname}}
}
% icon with text shortcut
\newcommand{\icontext}[4]{
\vcenteredhbox{\icon{#1}{#2}{#3}} \hspace{2pt} \parbox{0.9\mpwidth}{\textcolor{#4}{#3}}
}
% icon with website url
\newcommand{\iconhref}[5]{
\vcenteredhbox{\icon{#1}{#2}{#5}} \hspace{2pt} \href{#4}{\textcolor{#5}{#3}}
}
% icon with email link
\newcommand{\iconemail}[5]{
\vcenteredhbox{\icon{#1}{#2}{#5}} \hspace{2pt} \href{mailto:#4}{\textcolor{#5}{#3}}
}
% reference
\newcommand{\reference}[6]{
\vcenteredhbox{\icon{#1}{#2}{#6}} \hspace{2pt} \href{mailto:#5}{\textcolor{#6}{#3} \\ \hspace*{22pt} \textcolor{#6}{#4}}
}
\usepackage{paracol}
\usepackage[a4paper]{geometry}
\geometry{top=1cm, bottom=1cm, left=1cm, right=1cm}
\usepackage{fancyhdr}
\pagestyle{empty}
% space between header and content
% \setlength{\headheight}{0pt}
\setlength{\parindent}{0mm}
\usepackage{array}
% custom column right-align with fixed width
% use like p{size} but via x{size}
\newcolumntype{x}[1]{%
>{\raggedleft\hspace{0pt}}p{#1}}%
\usepackage{graphicx}
\usepackage{tikz}
\usetikzlibrary{mindmap}
\usetikzlibrary{trees}
\usetikzlibrary{decorations.text}
\usetikzlibrary{fadings}
\usetikzlibrary{calc}
\usetikzlibrary{shapes.misc,positioning}
\usetikzlibrary{arrows}
\usetikzlibrary{arrows.meta}
\usetikzlibrary{backgrounds}
\usetikzlibrary{shadings}
\usetikzlibrary{calendar}
\usetikzlibrary{er}
\usetikzlibrary{patterns} % horizontal lines, vertical lines, north east lines, north west lines, grid, crosshatch, dots, crosshatch dots, fivepointed stars, sixpointed stars, bricks
\usetikzlibrary{shapes}
\usetikzlibrary{shapes.geometric}
\usetikzlibrary{decorations}
\usetikzlibrary{topaths}
\usepackage{smartdiagram}
\usepackage{float}
\usepackage{transparent}
\usepackage{xcolor}
% \usepackage{showframe}
\usepackage[hidelinks]{hyperref} % Package for links, must be the last package used
% primary color
\definecolor{maincol}{RGB}{225,0,0}
% dark color
\definecolor{darkcol}{RGB}{70,70,70}
% light color
\definecolor{lightcol}{RGB}{245,245,245}
\input{./functions}
\begin{document}
\columnratio{0.31}
\setlength{\columnsep}{2.2em}
\setlength{\columnseprule}{4pt}
\colseprulecolor{lightcol}
\input{./00-header-3}
\begin{paracol}{2}
\begin{leftcolumn}
\input{./09-contact}
\input{./06-languages}
\input{./05-skills}
\newpage
\input{./12-events}
\input{./08-references}
\input{./11-hobbies}
\vfill\null
\input{./13-qrcode-vcard}
\newpage
\input{./07-publications}
\vfill\null
\input{./13-qrcode-vcard}
\newpage
\vfill\null
\input{./13-qrcode-vcard}
\end{leftcolumn}
\begin{rightcolumn}
\input{./01-summary}
\input{./02-work}
\input{./03-education}
\input{./04-courses}
% hotfixes to create fake-space to ensure the whole height is used
\mbox{}
\vfill
\end{rightcolumn}
\end{paracol}
\end{document}