Update CV

This commit is contained in:
Riccardo Finotello
2025-01-06 18:15:25 +01:00
commit bce272d56a
4 changed files with 1514 additions and 0 deletions

308
.gitignore vendored Normal file
View File

@@ -0,0 +1,308 @@
## Core latex/pdflatex auxiliary files:
*.pdf
*.aux
*.lof
*.log
*.lot
*.fls
*.out
*.toc
*.fmt
*.fot
*.cb
*.cb2
.*.lb
## Intermediate documents:
*.dvi
*.xdv
*-converted-to.*
# these rules might exclude image files for figures etc.
# *.ps
# *.eps
# *.pdf
## Generated if empty string is given at "Please type another file name for output:"
.pdf
## Bibliography auxiliary files (bibtex/biblatex/biber):
*.bbl
*.bbl-SAVE-ERROR
*.bcf
*.blg
*-blx.aux
*-blx.bib
*.run.xml
## Build tool auxiliary files:
*.fdb_latexmk
*.synctex
*.synctex(busy)
*.synctex.gz
*.synctex.gz(busy)
*.pdfsync
*.rubbercache
rubber.cache
## Build tool directories for auxiliary files
# latexrun
latex.out/
## Auxiliary and intermediate files from other packages:
# algorithms
*.alg
*.loa
# achemso
acs-*.bib
# amsthm
*.thm
# beamer
*.nav
*.pre
*.snm
*.vrb
# changes
*.soc
# comment
*.cut
# cprotect
*.cpt
# elsarticle (documentclass of Elsevier journals)
*.spl
# endnotes
*.ent
# fixme
*.lox
# feynmf/feynmp
*.mf
*.mp
*.t[1-9]
*.t[1-9][0-9]
*.tfm
#(r)(e)ledmac/(r)(e)ledpar
*.end
*.?end
*.[1-9]
*.[1-9][0-9]
*.[1-9][0-9][0-9]
*.[1-9]R
*.[1-9][0-9]R
*.[1-9][0-9][0-9]R
*.eledsec[1-9]
*.eledsec[1-9]R
*.eledsec[1-9][0-9]
*.eledsec[1-9][0-9]R
*.eledsec[1-9][0-9][0-9]
*.eledsec[1-9][0-9][0-9]R
# glossaries
*.acn
*.acr
*.glg
*.glo
*.gls
*.glsdefs
*.lzo
*.lzs
*.slg
*.slo
*.sls
# uncomment this for glossaries-extra (will ignore makeindex's style files!)
# *.ist
# gnuplot
*.gnuplot
*.table
# gnuplottex
*-gnuplottex-*
# gregoriotex
*.gaux
*.glog
*.gtex
# htlatex
*.4ct
*.4tc
*.idv
*.lg
*.trc
*.xref
# hypdoc
*.hd
# hyperref
*.brf
# knitr
*-concordance.tex
# TODO Uncomment the next line if you use knitr and want to ignore its generated tikz files
# *.tikz
*-tikzDictionary
# listings
*.lol
# luatexja-ruby
*.ltjruby
# makeidx
*.idx
*.ilg
*.ind
# minitoc
*.maf
*.mlf
*.mlt
*.mtc[0-9]*
*.slf[0-9]*
*.slt[0-9]*
*.stc[0-9]*
# minted
_minted*
*.pyg
# morewrites
*.mw
# newpax
*.newpax
# nomencl
*.nlg
*.nlo
*.nls
# pax
*.pax
# pdfpcnotes
*.pdfpc
# sagetex
*.sagetex.sage
*.sagetex.py
*.sagetex.scmd
# scrwfile
*.wrt
# svg
svg-inkscape/
# sympy
*.sout
*.sympy
sympy-plots-for-*.tex/
# pdfcomment
*.upa
*.upb
# pythontex
*.pytxcode
pythontex-files-*/
# tcolorbox
*.listing
# thmtools
*.loe
# TikZ & PGF
*.dpth
*.md5
*.auxlock
# titletoc
*.ptc
# todonotes
*.tdo
# vhistory
*.hst
*.ver
# easy-todo
*.lod
# xcolor
*.xcp
# xmpincl
*.xmpi
# xindy
*.xdy
# xypic precompiled matrices and outlines
*.xyc
*.xyd
# endfloat
*.ttt
*.fff
# Latexian
TSWLatexianTemp*
## Editors:
# WinEdt
*.bak
*.sav
# Texpad
.texpadtmp
# LyX
*.lyx~
# Kile
*.backup
# gummi
.*.swp
# KBibTeX
*~[0-9]*
# TeXnicCenter
*.tps
# auto folder when using emacs and auctex
./auto/*
*.el
# expex forward references with \gathertags
*-tags.tex
# standalone packages
*.sta
# Makeindex log files
*.lpz
# xwatermark package
*.xwm
# REVTeX puts footnotes in the bibliography by default, unless the nofootinbib
# option is specified. Footnotes are the stored in a file with suffix Notes.bib.
# Uncomment the next line to have this generated file ignored.
#*Notes.bib

4
README.md Normal file
View File

@@ -0,0 +1,4 @@
# Academic Curriculum Vitae
This is my Curriculum Vitae in academic format.
It is a **longer** and **extended** version with details on all events I attended and contributions I made.

1009
cv.tex Normal file

File diff suppressed because it is too large Load Diff

193
educv.cls Normal file
View File

@@ -0,0 +1,193 @@
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{educv}[2020/26/07 Academic CV]
\LoadClass{article}
%%%% BEGIN OPTIONS
%%%%%%%% PACKAGES
\RequirePackage[margin=1.25cm]{geometry} %------------ change aspect
\RequirePackage{graphicx} %-------------------------- figures and images
\RequirePackage{fontspec} %-------------------------- fonts in XeLaTex
\RequirePackage{enumitem} %-------------------------- control spacing of lists
\RequirePackage{fontawesome} %----------------------- icons and symbols
\RequirePackage{booktabs} %-------------------------- tables
\RequirePackage{multicol} %-------------------------- columns for tables
\RequirePackage{multirow} %-------------------------- rows for tables
\RequirePackage[usenames,dvipsnames]{xcolor} %------- colours
\RequirePackage[framemethod=TikZ]{mdframed} %-------- fancy frames
\RequirePackage{framed} %---------------------------- sidebar colour
\RequirePackage{ifthen} %---------------------------- conditionals
\RequirePackage{tikz} %------------------------------ foreach loops and diagrams
\RequirePackage{bookmark} %-------------------------- hyperref
\renewcommand{\familydefault}{\sfdefault} %---------- default font w/o graces
\setsansfont{DejaVu Sans}
%%%%%%%% STYLE OF THE PAGE
\pagestyle{empty}
%%%%%%%% OPTIONS
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}}
%%%% END OF OPTIONS
\ProcessOptions\relax
%%%% BEGIN DEFINITIONS
%%%%%%%% COLOURS
\definecolor{name}{gray}{0.40}
\definecolor{surname}{gray}{0.00}
\definecolor{links}{HTML}{006bb3}
\definecolor{sectiontitle}{gray}{0.40}
\definecolor{hlinecolor}{HTML}{0052cc}
%%%%%%%% CHARACTERISTIC SIZES
\setlength{\parindent}{0em}
\setlength{\parskip}{0em}
\setlength{\topskip}{0em}
\setlength{\baselineskip}{0em}
%%%%%%%% INFO COMMANDS
\makeatletter
\newcommand*{\authorname}[1]{\def\@authorname{#1}} %-------------------------------------------- name
\newcommand*{\authorsurname}[1]{\def\@authorsurname{#1}} %-------------------------------------- surname
\newcommand{\name}{\@authorname}
\newcommand{\surname}{\@authorsurname}
\newcommand*{\skypename}[1]{\def\@skypename{#1}} %---------------------------------------------- Skype name
\newcommand*{\skypeinvite}[1]{\def\@skypeinvite{#1}} %------------------------------------------ Skype invite link
\newcommand{\skypelink}{\faSkype~
\ifthenelse{\isundefined{\@skypeinvite}}
{\@skypename}
{\href{\@skypeinvite}{\@skypename}}
} %--------------------------------------------------------------------- link to Skype
\newcommand*{\github}[1]{\def\@github{#1}} %---------------------------------------------------- GitHub username
\newcommand{\githublink}{\faGithub~
\href{https://www.github.com/\@github}
{\@github}
} %-------------------------------------------------------------------- link to GitHub
\newcommand*{\linkedin}[1]{\def\@linkedin{#1}} %----------------------------------------------- LinkedIn username
\newcommand{\linkedinlink}{\faLinkedinSquare~
\href{https://www.linkedin.com/in/\@linkedin}
{\@linkedin}
} %------------------------------------------------------------------ link to LinkedIn
\newcommand*{\phone}[1]{\def\@phone{#1}} %----------------------------------------------------- phone contact info
\newcommand{\phonelink}{\faMobile~
\href{tel:\@phone}{\@phone}
} %--------------------------------------------------------------------- link to phone
\newcommand*{\email}[1]{\def\@email{#1}} %----------------------------------------------------- email contact info
\newcommand{\emaillink}{\faAt~
\href{mailto:\@email}{\@email}
} %--------------------------------------------------------------------- link to mail
\newcommand*{\homepage}[1]{\def\@homepage{#1}} %----------------------------------------------- homepage
\newcommand{\homepagelink}{\faHome~
\href{https://\@homepage}
{\@homepage}
} %-------------------------------------------------------------------- link to homepage
\hypersetup %---------------------------------------------------------------------------------- update metadata
{%
pdftitle={\@title},
pdfsubject={Curriculum Vitae},
pdfauthor={\@author},
pdfkeywords={curriculum vitae, resume, job, work, education, experience},
pdfstartview={FitH},
pdfcreator={XeLaTeX},
pdfproducer={XeLaTeX},
pdflang={en-GB},
pdfpagemode={UseOutlines},
bookmarksopen={true},
bookmarksnumbered={true},
hidelinks,
colorlinks=true,
allcolors=links
}
\makeatother
%%%%%%%% MAIN HEADING
\newenvironment{cvname} % main heading with name and info
{%
\vspace*{0.75em}
\begin{center}
\fontsize{32pt}{32pt}\selectfont
}
{%
\end{center}
}
\newenvironment{cvcontact} % contact info
{%
\begin{center}
\small
}
{%
\end{center}
}
\newenvironment{cvsocial} % social media info
{%
\begin{center}
\small
}
{%
\end{center}
}
\makeatletter
\newcommand{\cvtitle} % fill main heading with info (website, LinkedIN, Skype)
{%
\begin{cvname}
\textcolor{name}{\name}~\textcolor{surname}{\MakeUppercase{\surname}}
\end{cvname}
\begin{cvcontact}
\foreach \x in {\emaillink, \phonelink}
{
\ifthenelse{\isundefined{\x}}{}{\x~}
}
\end{cvcontact}
\begin{cvsocial}
\foreach \x in {\linkedinlink, \skypelink, \githublink, \homepagelink}
{
\ifthenelse{\isundefined{\x}}{}{\x~}
}
\end{cvsocial}
}
\makeatother
%%%%%%%% SECTIONS
\renewcommand{\section}[1]
{%
\vspace{1em}
{\Large \bf \textcolor{sectiontitle}{#1}}
\textcolor{hlinecolor}{\rule{\textwidth}{3pt}}
}
%%%%%%%% FOOTER
\newcommand{\cvgdpr}
{%
{%
\tiny
\vspace*{-2em}
I hereby authorise the use of my personal data in accordance to the GDPR 679/16 -- ``European regulation on the protection of personal data''.
}
}
% vim: ft=tex