-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
314 lines (263 loc) · 11.2 KB
/
main.tex
File metadata and controls
314 lines (263 loc) · 11.2 KB
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
\documentclass[10pt, a4paper]{extarticle}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 1. PACKAGES
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Layout and Geometry
\usepackage[nomarginpar, margin=10mm]{geometry} % Page margins
\usepackage{paracol} % Multi-column layout
\usepackage{eso-pic} % Background elements
\usepackage{enumitem} % Custom lists
\usepackage{tabularx} % Intelligent column widths (NEW)
% Typography and Language
\usepackage{fontspec} % Custom fonts (Requires XeLaTeX or LuaLaTeX)
\usepackage{titlesec} % Custom section titles
\usepackage[normalem]{ulem} % Underlining (for links)
% Graphics and Colors
\usepackage{graphicx} % Images
\usepackage{tikz} % Drawing (shapes, backgrounds)
\usepackage[dvipsnames]{xcolor} % Colors
\usepackage{fontawesome5} % Icons
\usepackage{array} % Table alignment
% Interaction
\usepackage[hidelinks]{hyperref} % Clickable links
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 2. CONFIGURATION (FONTS & COLORS)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% --- Variables ---
\newcommand{\profilepic}{resources/sample.png} % Photo path
% --- Colors ---
\definecolor{accentcolor}{RGB}{93, 156, 236} % Light blue
\definecolor{textcolor}{RGB}{44, 62, 80} % Dark gray
\colorlet{periwinkle}{Periwinkle} % Main Accent
\colorlet{sidebarbg}{Periwinkle!70} % Sidebar background
\colorlet{whitecanvas}{White!15} % Main content background
% --- Fonts ---
\setmainfont[Path=fonts/, UprightFont=*-Medium, ItalicFont=*-MediumIt, BoldFont=*-Bold, BoldItalicFont=*-BoldIt]{LatinaEssential}
% Font Shortcuts
\newcommand{\mymedium}{\normalfont}
\newcommand{\mymediumit}{\itshape}
\newcommand{\mybold}{\bfseries}
\newcommand{\myboldit}{\bfseries\itshape}
\newcommand{\myheavyit}{\fontspec[Path=fonts/]{LatinaEssential-HeavyIt.otf}}
\newcommand{\mylightit}{\fontspec[Path=fonts/]{LatinaEssential-LightIt.otf}}
% --- Section Styling ---
\titleformat{\section}
{\color{periwinkle}\LARGE\myheavyit}
{\thesection}{0pt}
{}[\color{periwinkle!70}\titlerule]
\titlespacing{\section}{0pt}{8pt}{8pt}
\setcounter{secnumdepth}{0}
% Global Layout Settings
\pagestyle{empty}
\setlength{\parindent}{0pt}
\setlength{\parskip}{0pt}
\setlength{\columnsep}{17mm}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 3. MACROS & COMMANDS
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% --- Helper: Custom Link Style (NEW) ---
% Adds a small icon after the link
\newcommand{\link}[2]{%
\href{#1}{#2\;{\footnotesize\faExternalLink*}}%
}
% --- Helper: Custom List Separator (NEW) ---
\newcommand{\listsep}{%
\hspace{4pt}\textcolor{White}{\textbf{|}}\hspace{4pt}%
}
% --- Helper: Skill Progress Bar ---
% Usage: \skillbar{Language}{Proficiency}{Level (0 to 5)}
\newcommand{\skillbar}[3]{%
\textcolor{white}{\mybold{#1}} \textcolor{white}{-- \mymediumit{#2}}\\[2pt]
\begin{tikzpicture}
% Background empty bar (optional, uncomment if needed)
% \fill[white!30] (0,0) rectangle (5,0.15);
\fill[white] (0,0) rectangle (#3,0.15);
\end{tikzpicture}\\[4pt]
}
% --- Helper: Sidebar Contact Info ---
\newcommand{\contactinfo}[3]{%
\textcolor{white}{%
\faIcon{#1}\hspace{6pt}\parbox[t]{4.5cm}{\mymedium{#2}}\\[#3]%
}%
}
% --- Helper: Timeline Entry (Education/Work) ---
% Usage: \timelineentry{Date}{Title}{Organization}{Description}{Details}
\newcommand{\timelineentry}[5]{%
% Date Bubble
\tikz[baseline=(text.base)]{
\node[
rectangle,
rounded corners=14pt,
fill=periwinkle!70,
text=white,
inner sep=10pt,
] (text) {\large\mybold{#1}};
} &
% Content
\large{\textcolor{black}{\mybold{#2}}} \par
\normalsize\mymedium{\textcolor{periwinkle}{#3}} \par
\vspace{1pt}
\mymediumit \textcolor{black!70}{#4} \par
\mymedium{#5}
\vspace{6pt} \\
}
% --- Helper: Technical Skill Item ---
\newcommand{\techskill}[2]{%
\item \textcolor{black}{\mymediumit{#1}} \textcolor{black!90}{\mybold{({#2})}}
}
% --- Helper: Certification Entry ---
\newcommand{\certentry}[4]{%
\large{\textcolor{black}{\mybold{#1}}} \par
\normalsize\mymedium{\textcolor{periwinkle}{#2}} \par
\vspace{1pt}
\mymediumit \textcolor{black!70}{#3} \par
\mymedium{#4}
\vspace{8pt}
}
% --- Background Generator ---
\newcommand{\makebackground}{%
\AddToShipoutPictureBG*{%
\begin{tikzpicture}[remember picture,overlay]
% Sidebar Color
\node[
fill=sidebarbg,
minimum width=1\paperwidth,
minimum height=2\paperheight,
] at ([yshift=0.05\paperheight]current page.south) {};
% Main Content White Rounded Box
\node[
fill=whitecanvas,
rounded corners=50pt,
minimum width=1.09\paperwidth,
minimum height=1.93\paperheight,
] at ([yshift=0.1\paperheight,xshift=0.25\paperheight]current page.north) {};
\end{tikzpicture}%
}%
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 4. DOCUMENT BODY
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\makebackground
% Set column ratio: Left (Sidebar) 25%, Right (Content) 75%
\columnratio{0.25}
\begin{paracol}{2}
% =========================================================================
% LEFT COLUMN (SIDEBAR)
% =========================================================================
\vspace{3mm}
% --- Profile Picture ---
\begin{center}
\begin{tikzpicture}
\clip (0,0) circle (2.2cm);
% Using the variable defined at the top
\node at (0,0) {\includegraphics[width=4.5cm]{\profilepic}};
\end{tikzpicture}
\end{center}
\vspace{8mm}
% --- Personal Info ---
\section{\textcolor{white}{Personal Info}}
\vspace{2mm}
\textcolor{white}{
\faIcon{user}\hspace{6pt}\mybold{Edoardo Vassallo}\\[6pt]
\faIcon{mars}\hspace{6pt}\mybold{Male}\\[6pt]
\faIcon{birthday-cake}\hspace{6pt}\mybold{03/06/2002}\\[6pt]
\faIcon{flag}\hspace{6pt}\mybold{Italian}\\
}
% --- Contact Info ---
\section{\textcolor{white}{Contact Info}}
\vspace{2mm}
\contactinfo{phone}{+39 377 698 9383}{6pt}
\contactinfo{envelope}{edo.vas@protonmail.com}{6pt}
\contactinfo{map-marker-alt}{Via Bolzaneto 58/8 \newline \hspace{2mm} 16162, Genova, Italy}{6pt}
\contactinfo{linkedin}{\link{https://www.linkedin.com/in/inkeaton/?locale=en_US}{linkedin.com/in/inkeaton}}{6pt}
\contactinfo{github}{\link{https://github.com/inkeaton}{github.com/inkeaton}}{6pt}
% --- Languages ---
\section{\textcolor{white}{Languages}}
\vspace{2mm}
% (Language, Proficiency, Bar Width 0-5)
\skillbar{Italian}{Native}{5}
\skillbar{English}{C2 (Proficient)}{5}
% --- Interests ---
\section{\textcolor{white}{Interests}}
\textcolor{white}{
% Using the new \listsep separator
\mybold Linguistics \listsep Storytelling\\
History \listsep Graphic Design \\
Drawing \listsep Technology
}
\vspace{4mm}
\switchcolumn
% =========================================================================
% RIGHT COLUMN (MAIN CONTENT)
% =========================================================================
% --- Name and Title ---
{\Huge\myheavyit{\textcolor{textcolor}{Edoardo Vassallo}}}\\[4pt]
{\Large\myboldit{\textcolor{periwinkle!70}{Computer Scientist}}}
\vspace{3mm}
% --- Education ---
\section{Education}
\begin{tabularx}{\linewidth}{@{} p{0.22\linewidth} | X @{}}
\timelineentry{2024-now}
{Master Degree in Computer Science \small \textcolor{black!45}{EQF 7}}
{\link{https://corsi.unige.it/en/corsi/11964}{\mymediumit{University of Genoa}}}
{In progress, began in September 2024}
{}
\timelineentry{2021-2024}
{Bachelor's Degree in Computer Science \small \textcolor{black!45}{EQF 6}}
{\link{https://corsi.unige.it/en/corsi/8759}{\mymediumit{University of Genoa}}}
{September 2021 - July 2024}
{Final Grade: \mybold 110 cum laude / 110 \newline \mymedium Final Thesis:\mylightit Dangers of Self-Deleting JavaScript Code and Its Real World Usage}
\end{tabularx}
% --- Work History ---
\section{Work History}
\begin{tabularx}{\linewidth}{@{} p{0.22\linewidth} | X @{}}
\timelineentry{2025-now}
{Academic Tutor}
{\link{https://corsi.unige.it/en/info/studenti-tutorato}{\mymediumit{University of Genoa}}}
{In progress, began in September 2025}
{}
\timelineentry{2022-2023}
{IT Technical Support}
{\mymediumit Local Restaurant "Pizzeria Snoopy"}
{September 2022 - January 2023}
{}
\end{tabularx}
% --- Technical Skills ---
\section{Technical Skills}
\textcolor{black}{
\mymediumit
\begin{itemize}[leftmargin=*, nosep, before=\vspace{2pt}, after=\vspace{2pt}]
\techskill{Coding} {C, C++, C\#, Python, Java}
\techskill{Machine Learning}{Tensorflow, Keras, PyTorch}
\techskill{Databases}{SQL, PySpark}
\techskill{Web Applications}{HTML, JS, PHP, CSS, D3JS}
\techskill{Agent Design}{Prolog, AgentSpeak}
\techskill{High Performance Computing}{OpenMP, CUDA, MPI}
\techskill{Operating Systems}{Linux}
\techskill{Game Engines}{Unity, Godot}
\techskill{Software Development}{Git, UML}
\techskill{Markup}{\LaTeX, Markdown}
\end{itemize}
}
% --- Certifications ---
\section{Certifications}
\vspace{2mm}
\certentry{Cambridge English Proficiency Exam (CPE) \small \textcolor{black!45}{CEFR C2}}
{\mymediumit\link{https://www.cambridgeenglish.org/exams-and-tests/proficiency/}{Cambridge University Press \& Assessment}}
{Center: IT278 0004, Verification Number: D1401906}
{Obtained on 17/05/2025, Grade: \mybold A\mymedium, Score: \mybold 222/230}
\certentry{European Computer Driving Licence (ECDL)}
{\mymediumit\link{https://www.ecdlonline.it/patente-europea}{Associazione Italiana per l'Informatica ed il Calcolo Automatico (AICA)}}
{Full Standard, Skillcard N°: IT 2393875}
{Obtained on 28/05/2019}
\end{paracol}
% =========================================================================
% FOOTER
% =========================================================================
\vfill
\textcolor{white}{\mymedium{%
\hfill Written and rendered in \link{https://github.com/inkeaton/CurriculumVitae}{\LaTeX} \\
Text with the following icon contains \link{https://en.wikipedia.org/wiki/Hyperlink}{links} \hfill Fonts used belong to the \link{https://www.behance.net/gallery/51912641/Latina-Essential-Free?tracking_source=search_projects|latina+essential&l=1\#}{Latina Essential Family}
}}
\end{document}