blob: 153ba198173dd6b1ad90da1b8db61869f7ae4ea9 (
plain)
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
|
\ProvidesPackage{ResumeMacros}[2015/08/19 v0.8 ResumeMacros]
\RequirePackage{fontawesome}
%Config
%Setup hyperref package, and colours for links
\RequirePackage{hyperref}
\definecolor{linkcolour}{rgb}{0,0.2,0.6}
\hypersetup{colorlinks,breaklinks,urlcolor=linkcolour, linkcolor=linkcolour}
%FONTS
\defaultfontfeatures{Mapping=tex-text}
\setmainfont[BoldFont = Helvetica Neue, ItalicFont=Helvetica Neue Thin Italic ,SmallCapsFont = Helvetica Neue Light]{Helvetica Neue Thin}
%CV Sections
\titleformat{\section}{\Large\raggedright}{}{0em}{}[\titlerule]
\titlespacing{\section}{0pt}{2pt}{2pt}
%New length definition
\newlength{\datebox}
\settowidth{\datebox}{Décembre 2009}
% Macros
\newcommand{\el}{\quad - \enspace}
\newcommand\user[2]{\color{Blue}{\LARGE #1 #2}\color{Black}}
\newcommand\linkedin[2]{\faLinkedin \quad \href{#1}{#2}}
\newcommand\address[1]{\faHome \quad #1}
\newcommand\infos[1]{\faInfo \quad #1}
\newcommand\smartphone[1]{\faMobilePhone \quad #1}
\newcommand\email[2]{\faEnvelope \quad \href{mailto:#1}{#2}}
\newcommand\resumetitle[1]{
\par{
\bigskip\center{\Large #1}\par
}
\bigskip
}
%Resume part title definition
\newcommand\sectiontitle[2]{\section{\texorpdfstring{\color{Blue}#2\enspace #1}{#1}}}
|