\NeedsTeXFormat{LaTeX2e} \LoadClass{article} \ProvidesClass{arthur-cv-en}[2019/06/28 Custom english CV class] %%%%%%%%%%%%%%%%%%%%% %% Load packages %% %%%%%%%%%%%%%%%%%%%%% \RequirePackage[quiet]{fontspec} \RequirePackage[sfdefault]{ClearSans} % Police \usepackage{fontawesome} % Icons \RequirePackage{ragged2e} \RequirePackage{parskip} \RequirePackage[hidelinks]{hyperref} % Set hyperlink \RequirePackage[absolute,overlay]{textpos} % Set text boxes \RequirePackage{titlesec} % Structure \RequirePackage{tikz} % Graphic \RequirePackage{xcolor} % Colors \RequirePackage{multirow} % Join rows in tabular \RequirePackage{xargs} % Multiple optional args \RequirePackage{tcolorbox} % Colored box \RequirePackage{enumitem} % Customize item \RequirePackage{ifthen} % Conditions %%%%%%%%%%%%%%%%%% %% Set colors %% %%%%%%%%%%%%%%%%%% \definecolor{sidecolor}{HTML}{E7E7E7} \definecolor{yt}{HTML}{c71610} \definecolor{test}{HTML}{0077be} \definecolor{mainblue}{HTML}{0E5484} \definecolor{linkedin}{HTML}{0085AE} \colorlet{headercolor}{gray} %%%%%%%%%%%%%%%%%%% %% Information %% %%%%%%%%%%%%%%%%%%% % Set linkedin, github, mail, phone, site, name and tilte commands \newcommand{\cvlinkedin}[1]{\renewcommand{\cvlinkedin}{#1}} \newcommand{\cvgithub}[1]{\renewcommand{\cvgithub}{#1}} \newcommand{\cvmail}[1]{\renewcommand{\cvmail}{#1}} \newcommand{\cvnumberphone}[1]{\renewcommand{\cvnumberphone}{#1}} \newcommand{\cvsite}[1]{\renewcommand{\cvsite}{#1}} \newcommand{\cvname}[1]{\renewcommand{\cvname}{#1}} \newcommand{\cvjobtitle}[1]{\renewcommand{\cvjobtitle}{#1}} %%%%%%%%%%%%%% %% Header %% %%%%%%%%%%%%%% % Set unit \setlength{\TPHorizModule}{1cm} \setlength{\TPVertModule}{1cm} % TODO : Clean makeprofile command \newcommand{\makeprofile}{ % Set left color band \begin{tikzpicture}[remember picture,overlay] \node [rectangle, anchor=north west, fill=sidecolor, minimum width=8cm, minimum height=27cm] at (0cm, -3.2cm) {};{}; \end{tikzpicture} % Set header \begin{textblock}{20.5}(0.25, 0.25) \begin{minipage}[t]{0.39\textwidth} % Set info \vspace{3mm} \renewcommand{\arraystretch}{1.4} \begin{tabular}{p{1.1cm} @{\hskip 0.3cm}p{6.3cm}} % Set phone \ifthenelse{\equal{\cvnumberphone}{}}{}{ {$ \begin{array}{l} \hspace{4mm} \textnormal{\LARGE \faMobile} \end{array} $} & \large\cvnumberphone\\ } % Set site \ifthenelse{\equal{\cvsite}{}}{}{ {$ \begin{array}{l} \hspace{2.8mm} \textnormal{\textcolor{test}{\Large \faGlobe}} \end{array} $} & \href{http://\cvsite}{\large\cvsite} \\ } % Set eMail \ifthenelse{\equal{\cvmail}{}}{}{ {$ \begin{array}{l} \hspace{2.5mm} \textnormal{\Large \textcolor{yt}{\faEnvelopeO}} \end{array} $} & \href{mailto:\cvmail}{\large\cvmail} \\ } % Set Linkedin \ifthenelse{\equal{\cvlinkedin}{}}{}{ {$ \begin{array}{l} \hspace{3mm} \textnormal{\Large \textcolor{linkedin}{\faLinkedin}} \end{array} $} & \href{https://www.linkedin.com\cvlinkedin}{\large\cvlinkedin} \\ } % Set GitHub \ifthenelse{\equal{\cvgithub}{}}{}{ {$ \begin{array}{l} \hspace{3mm} \textnormal{\Large \faGithub} \end{array} $} & \href{https://www.github.com/\cvgithub}{\large\cvgithub} \\ } \end{tabular} \end{minipage} \begin{minipage}[t]{0.60\textwidth} % Set name and title \vspace{3mm} {\hspace{0mm}\Huge\color{mainblue}\cvname} \vspace{7mm} {\hspace{0mm}\Large\color{black!80}\cvjobtitle} \end{minipage} \end{textblock} } %%%%%%%%%%%%%%%%%%%%%%% %% Left side block %% %%%%%%%%%%%%%%%%%%%%%%% \tcbuselibrary{most} \tcbset{enhanced} % Set section at the left side \newcommand{\sectionleft}[1]{ \par\vspace{3.5mm} {% \begin{tcolorbox}[colframe=mainblue, colback=blue!10!white, shadow={0.7mm}{-1mm}{0mm}{black!50!white}, sharpish corners, boxrule=0.8mm] \centering\LARGE\textbf{#1} \end{tcolorbox} } \par\vspace{2mm} } % Set subsection left side \newcommand{\subsectionleft}[2]{ \par {% \begin{sloppypar} \begin{itemize}[font=\Large, leftmargin=7mm] \item \large#1 #2% \end{itemize} \end{sloppypar} } \par\vspace{2mm} } %%%%%%%%%%%%%%%%%%%%%%%% %% Right side block %% %%%%%%%%%%%%%%%%%%%%%%%% % Color of title section \def\@sectioncolor#1#2#3{% {% \color{mainblue} #1#2#3% }% } % Set section right \renewcommand{\section}[1]{ \par\vspace{3.5mm} \textbf{% \huge\color{headercolor}% \@sectioncolor #1% } \par\vspace{2mm} } % Set environnement \setlength{\tabcolsep}{2pt} \newenvironment{rightenv}{% \begin{sloppypar}\begin{tabular}{@{\extracolsep{\fill}}p{2.1cm} l} }{% \end{tabular}\end{sloppypar} } % Set item right \newcommandx{\subsectionright}[6][2= ,4= ,5= ]{% #1 & \parbox[t]{10.1cm}{% \ifblank{#2}{}{#2 in }\textbf{\large\color{mainblue}#3}% \hfill% \ifblank{#4}{}{\footnotesize at \textit{#4}}\ifblank{#5}{}{\footnotesize, #5}\\% \ifblank{#6}{\vspace{0mm}}{\normalsize#6\vspace{\parsep}}% }\\% } %%%%%%%%%%%%%%%%%%%% %% Page setting %% %%%%%%%%%%%%%%%%%%%% \RequirePackage[left=0.cm,top=0.cm,right=0.cm,bottom=0.cm,nohead,nofoot]{geometry}