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
|
% !TEX TS-program = xelatex
\documentclass[a4paper]{article}
%A Few Useful Packages
\usepackage[frenchb]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{marvosym}
\usepackage{fontspec} %for loading fonts
\usepackage{xunicode,xltxtra,url,parskip} %other packages for formatting
\RequirePackage{color,graphicx}
\usepackage[usenames,dvipsnames]{xcolor}
%\usepackage[big]{layaureo} %better formatting of the A4 page
% an alternative to Layaureo can be ** \usepackage{fullpage} **
\usepackage{fullpage}
\usepackage{longtable} %for Grades
\usepackage{titlesec} %custom \section
\usepackage[margin=1.5cm]{geometry}
\usepackage{fontawesome}
%Setup hyperref package, and colours for links
\usepackage{hyperref}
\definecolor{linkcolour}{rgb}{0,0.2,0.6}
\hypersetup{colorlinks,breaklinks,urlcolor=linkcolour, linkcolor=linkcolour}
%FONTS
\defaultfontfeatures{Mapping=tex-text}
%\setmainfont[SmallCapsFont = Fontin Sans Small Caps]{Fontin Sans Regular}
\setmainfont[BoldFont = Helvetica Neue, ItalicFont=Helvetica Neue Thin Italic ,SmallCapsFont = Helvetica Neue Light]{Helvetica Neue Thin}
%\setmainfont[SmallCapsFont = Calibri]{Calibri}
%CV Sections inspired by:
\titleformat{\section}{\Large\scshape\raggedright}{}{0em}{}[\titlerule]
\titlespacing{\section}{0pt}{3pt}{3pt}
%Tweak a bit the top margin
%\addtolength{\voffset}{-1.3cm}
\newlength{\datebox}
\settowidth{\datebox}{Décembre 2009}
%Italian hyphenation for the word: ''corporations''
\hyphenation{im-pre-se}
%-------------WATERMARK TEST [**not part of a CV**]---------------
\usepackage[absolute]{textpos}
\setlength{\TPHorizModule}{30mm}
\setlength{\TPVertModule}{\TPHorizModule}
\textblockorigin{2mm}{0.65\paperheight}
\setlength{\parindent}{0pt}
\usepackage{array}
\newcolumntype{R}[1]{>{\hfill}m{#1}}
%--------------------BEGIN DOCUMENT----------------------
\begin{document}
\pagestyle{empty} % non-numbered pages
\font\fb=''[cmr10]'' %for use with \LaTeX command
\input{perso}
%--------------------TITLE-------------
\par{
\bigskip\center{\Large Architecte logiciel | Développeur/Concepteur JEE}\par
}
\bigskip
%--------------------SECTIONS-----------------------------------
\input{headline}
%\input{perso_section}
\input{competences}
\input{experience_compact}
\input{langues}
\input{scolarite}
%\input{interets}
\input{references}
\end{document}
|