Paolo Didonè's CV
Author
Paolo Didonè
Last Updated
6年前
License
Creative Commons CC BY 4.0
Abstract
CV
CV
\documentclass{article}
\RequirePackage[left=2.5cm,top=0.5cm,right=0.9cm,bottom=0.2cm,nohead,nofoot]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[french]{babel}
\usepackage[babel]{csquotes}
\usepackage{enumerate}
\renewcommand{\FrenchLabelItem}{\textbullet}
\def\imgdir{img}
\newcommand{\imggbox}[2][10cm]{\begin{center} \resizebox{#1}{!}{\includegraphics{\imgdir/#2}}\end{center}}
\usepackage{fancyhdr}
\usepackage{graphicx}
\renewcommand\headrulewidth{1pt}
\setlength\headheight{73pt}
\fancypagestyle{plain}{
\fancyhf{} %Clear Everything.
\fancyhead[L]{}
\fancyhead[C]{\imggbox[4cm]{intm.png}}
\fancyhead[R]{}
\renewcommand{\headrulewidth}{0pt} %0pt for no rule, 2pt thicker etc...
\renewcommand{\footrulewidth}{0pt}
\fancyfoot[L]{}
\fancyfoot[R]{}
}
%TABULAR
\usepackage[dvipsnames,table]{xcolor}
\usepackage{makecell}
\usepackage{multirow}
\usepackage{array}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{J}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}p{#1}}
\usepackage[flushleft]{threeparttable}
%Entetes
\usepackage{mdframed}
\usepackage{showexpl}
\mdfdefinestyle{intm}{%
innerleftmargin=5,
innerrightmargin=5,
frametitlerule=false,
backgroundcolor=NavyBlue,
linecolor=NavyBlue,
linewidth=2pt,
topline=false,
rightline=false,
leftline=false,
fontcolor=white
}
\newmdtheoremenv[%
backgroundcolor=NavyBlue,
linecolor=NavyBlue,
fontcolor=white,
linewidth=2pt,
topline=false,
rightline=false,
leftline=false]{theorem}{Theorem}
\pagestyle{plain}
% Font and Interlines
\renewcommand{\rmdefault}{phv} % Arial
\renewcommand{\sfdefault}{phv} % Arial
\setlength{\parindent}{0pt}% No paragraph indent
% Mailing
\usepackage{datatool}
%Variables
\newcommand{\nom}{\textbf{Paolo Didonè}}
\newcommand{\fonction}{\textbf{Linux System Administrator}}
\newcommand{\exper}{\textbf{20 years of professional experience}}
\begin{document}
\begin{table}
\Large
{\def\arraystretch{1.5}
\begin{tabular}{R{18cm}}
\color{NavyBlue} \nom \\
\color{NavyBlue} \fonction \\
\color{NavyBlue} \exper \\
\end{tabular}
}
\end{table}
\begin{mdframed}[style=intm]
\Large{\textbf{PERSONAL QUALITIES}}
\end{mdframed}
\DTLloaddb{etre}{etre.csv}
\begin{itemize}
\DTLforeach{etre}{
\savoir=Savoir%
}{
\item \savoir{}
}
\end{itemize}
\vspace*{2\baselineskip}
\begin{mdframed}[style=intm]
\Large{\textbf{EXPERTISE}}
\end{mdframed}
\DTLloaddb{faire}{faire.csv}
\begin{itemize}
\DTLforeach{faire}{
\savoir=Savoir%
}{
\item \savoir{}
}
\end{itemize}
\vspace*{2\baselineskip}
\begin{mdframed}[style=intm]
\Large{\textbf{EDUCATION}}
\end{mdframed}
\DTLloaddb{etudes}{etudes.csv}
\begin{itemize}
\DTLforeach{etudes}{
\diplome=Diplome%
}{
\item \diplome{}
}
\end{itemize}
\vspace*{2\baselineskip}
\begin{mdframed}[style=intm]
\Large{\textbf{TECHNICAL SKILLS}}
\end{mdframed}
\begin{itemize}
\item Systems : Linux, Debian, Ubuntu, CentOS, Fedora, RedHat
\item Networks : TCP/IP, SMB/CIFS, VPN, Firewall
\item Hardware : DELL, IBM, Sparc, others
\item Database: Mysql/MariaDB, Postgresql
\item Virtualization: Xen, KVM
\item Tools : Among others VI/Emacs,SMTP, IMAP, DNS, DHCP, Proxy cache, LDAP, NFS, SAMBA, CUPS, Bash, python, Libre/Open Office, Latex, Word/Pages, Excel/Numbers, PowerPoint/Keynote, Microsoft Project, Adobe Photoshop Lightroom Illustrator and InDesign Premiere Pro, Apple Final Cut Pro.
\end{itemize}
\vspace*{2\baselineskip}
\begin{mdframed}[style=intm]
\Large{\textbf{CERTIFICATIONS}}
\end{mdframed}
\DTLloaddb{certifications}{certifications.csv}
\begin{itemize}
\DTLforeach{certifications}{
\diplome=Diplome%
}{
\item \diplome{}
}
\end{itemize}
\vspace*{2\baselineskip}
\newpage
\begin{mdframed}[style=intm]
\Large{\textbf{WORK EXPERIENCE}}
\end{mdframed}
\DTLloaddb{missions}{missions.csv}
\begin{tabular}{L{14cm} R{3.5cm} }
\DTLforeach{missions}{
\client=Client,
\nbmois=Nbmois,
\periode=Periode,
\poste=Poste,
\activites=Activites%
}{\color{NavyBlue} \Large{\client{}} & \color{NavyBlue} \nbmois{} mois (\periode{}) \\
\color{NavyBlue} \poste{} & \\
\hline
\activites{} & \\
%\multicolumn{2}{c|}{\activites{} } \\
& \\
}
\end{tabular}
\end{document}