Skip to content

Commit 49af595

Browse files
author
Christophe Roger
committedOct 7, 2016
Merge branch 'master' into local-github
2 parents 8e29062 + 4893890 commit 49af595

File tree

3 files changed

+22
-17
lines changed

3 files changed

+22
-17
lines changed
 

‎README.md

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
Awesome Source CV [![Example](https://img.shields.io/badge/Exemple-pdf-blue.svg)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf)
22
=================
33

4-
Latex CV based on CV template created by Alessandro Plasmati. The original templates use _XeLaTeX_ engine and _Fontin_ font.
5-
More informations can be found here :
4+
## About
5+
6+
**Awesome Source Latex CV** is based on a CV template created by Alessandro Plasmati. The original template use _XeLaTeX_ engine and _[Fontin Sans](http://www.exljbris.com/fontinsans.html)_ font.
7+
8+
Original Alessandro Plasmati template and more informations can be found here :
69

710
- [ Scribd ](http://fr.scribd.com/doc/16335667/Writing-your-Professional-CV-with-LaTeX)
811
- [ LaTeX Templates ](http://www.latextemplates.com/template/plasmati-graduate-cv)
912
- [ ShareLatex ](https://www.sharelatex.com/templates/cv-or-resume/professional-cv)
1013

11-
I choose to move _Personal data_ on top of the page just before the professional title. I've also replaced default font by _[Source Sans Pro Font](https://github.com/adobe-fonts/source-sans-pro)_ and included _[Font Awesome](http://fontawesome.io/)_ icons.
14+
**Personal data** has moved on top of the first page just before the position and _[Fontin Sans](http://www.exljbris.com/fontinsans.html)_ font has been replaced by _[Source Sans Pro Font](https://github.com/adobe-fonts/source-sans-pro)_ from Adobe. _[Font Awesome](http://fontawesome.io/)_ icons are used to highlight important elements.
1215

13-
I've chosen to cut my resume in a couple of smaller files and to create a class file to make the main latex source code more readable.
16+
Unlike _Alessandro Plasmati_ CV template, all layout stuff in **Awesome Source Latex CV** has moved in the Latex class file _awesome-source-cv.cls_.
17+
18+
## How to use **Awesome Source CV** latex class
1419

1520
```latex
1621
% Define author's name
@@ -24,7 +29,6 @@ I've chosen to cut my resume in a couple of smaller files and to create a class
2429
\tagline{Chef de projet IT}
2530
```
2631

27-
2832
```latex
2933
\socialinfo{
3034
\linkedin{christopheroger}
@@ -33,7 +37,7 @@ I've chosen to cut my resume in a couple of smaller files and to create a class
3337
\smartphone{+687 123 456}
3438
\email{christophe.roger@mail.com}\\
3539
\address{2 Rue du quartier, 98765 Ville, Pays}\\
36-
\infos{Né le 23 septembre 1982 (33 ans) à Nouméa, Nouvelle-Calédonie}
40+
\infos{Né le 23 septembre 1982 (34 ans) à Nouméa, Nouvelle-Calédonie}
3741
}
3842
```
3943

‎awesome-source-cv.cls

+4-2
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878
\defaultfontfeatures{Mapping=tex-text}
7979
%
8080

81+
% Define font to use according to localFont option
8182
\ifthenelse{\isundefined{\@local}}
8283
{
8384
%\setmainfont[BoldFont = Helvetica Neue, ItalicFont=Helvetica Neue Thin Italic ,SmallCapsFont = Helvetica Neue Light]{Helvetica Neue Thin}
@@ -101,7 +102,7 @@
101102
\newlength{\leftcolumn}
102103
\setlength{\leftcolumn}{2.5cm}
103104

104-
% Macros
105+
% Font Awesome icons aliases
105106
\newcommand{\mailSymbol}{\faAt}
106107
\newcommand{\locationSymbol}{\faMapMarker}
107108
\newcommand{\infoSymbol}{\faInfo}
@@ -186,7 +187,7 @@
186187
\resumetitle{\@tagline}
187188
}
188189

189-
%Resume part title definition
190+
% Resume part title definition
190191
\newcommand\sectionTitle[2]{\section{\texorpdfstring{\accentColor#2\enspace #1}{#1}}}
191192

192193
% Define the 'experiences' environment
@@ -195,6 +196,7 @@
195196
}{%
196197
\end{longtable}
197198
}
199+
198200
% Render an experience in the experiences environment
199201
% Usage:
200202
% {<End date>} {<Title>}{<Enterprise>}{<Country>}

‎cv.tex

+8-9
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,14 @@
1515

1616
\begin{document}
1717

18-
\makecvheader
18+
\makecvheader
1919

20-
%--------------------SECTIONS-----------------------------------
21-
\input{section_headline}
22-
\input{section_competences} % Section compétence
23-
\input{section_experience_short} % Section expérience
24-
\input{section_langues} % Section langues
25-
\input{section_scolarite} % Section scholarité
26-
%\input{section_interets} % Section intérêts
27-
\input{section_references} % Section références
20+
\input{section_headline}
21+
\input{section_competences} % Section compétence
22+
\input{section_experience_short} % Section expérience
23+
\input{section_langues} % Section langues
24+
\input{section_scolarite} % Section scholarité
25+
%\input{section_interets} % Section intérêts
26+
\input{section_references} % Section références
2827

2928
\end{document}

0 commit comments

Comments
 (0)
Please sign in to comment.