diff options
author | Christophe Roger <darwiinc@live.fr> | 2016-09-21 23:29:01 +1100 |
---|---|---|
committer | Christophe Roger <darwiinc@live.fr> | 2016-09-21 23:29:01 +1100 |
commit | 0eb225f953cf029e9979e7051f8f7eacfa572015 (patch) | |
tree | 7f39f2baf0f342e4c65ed69f51f038bbe01ff1ca | |
parent | f901020653c3e5d7713367db2137923b3a6f2b14 (diff) | |
parent | 54dbbd28b2b52015afc3e7ac8fbc9b4764818c49 (diff) | |
download | cv-0eb225f953cf029e9979e7051f8f7eacfa572015.tar.gz cv-0eb225f953cf029e9979e7051f8f7eacfa572015.tar.bz2 cv-0eb225f953cf029e9979e7051f8f7eacfa572015.tar.xz cv-0eb225f953cf029e9979e7051f8f7eacfa572015.zip |
Merge branch 'master' into local-github
-rwxr-xr-x | README.md | 41 | ||||
-rwxr-xr-x | cv.tex | 2 | ||||
-rwxr-xr-x | source-awesome-cv.cls (renamed from simple-awesome-cv.cls) | 10 |
3 files changed, 35 insertions, 18 deletions
@@ -1,4 +1,4 @@ -latex-classicalcv [![Example](https://img.shields.io/badge/Exemple-pdf-blue.svg)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf) +Source Awesome CV [![Example](https://img.shields.io/badge/Exemple-pdf-blue.svg)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf) ================= Latex CV based on CV template created by Alessandro Plasmati. The original templates utilizes _XeLaTeX_ engine and _Fontin_ font. @@ -8,21 +8,37 @@ More informations can be found here : - [ LaTeX Templates ](http://www.latextemplates.com/template/plasmati-graduate-cv) - [ ShareLatex ](https://www.sharelatex.com/templates/cv-or-resume/professional-cv) -I choose to move _Personal data_ have on top of the page just before the professional title. I've also replaced default font by _Helvetica Neue_ +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_ items. I've chosen to cut my resume in a couple of smaller files and to add some macro to make the main latex source code more readable. ```latex -\user{firstname}{LASTNAME} -\linkedin{{link}{Link Description}} -\address{12, Dummy Road, 000000, Dummy Country} -\infos{Dummy infos (birthday, etc...)} -\smartphone{+687 000 000} -\email{mail@dummy-mail.com} +% Define author's name +% Usage: \name{<firstname>}{<lastname>} +% Mandatory +\name{Christophe}{ROGER} + +% Define author's tagline +% Usage: \tagline{<tag line>} +% Mandatory +\tagline{Chef de projet IT} ``` -To describe your experiences you have first to declare the _experiences_ environment + +```latex +\socialinfo{ + \linkedin{christopheroger} + \viadeo{christopheroger} + \github{darwiin}\\ + \smartphone{+687 123 456} + \email{christophe.roger@mail.com}\\ + \address{2 Rue du quartier, 98765 Ville, Pays}\\ + \infos{Né le 23 septembre 1982 (33 ans) à Nouméa, Nouvelle-Calédonie} +} +``` + +To describe your experiences you have first to declare the **experiences** environment ```latex % Begin a new experiences environment to use experience and consultantexperience macro @@ -33,11 +49,14 @@ To describe your experiences you have first to declare the _experiences_ environ \end{experiences} ``` +Then you can describe your experiences using **\experience** and **\consultantexperience** entries. Each +entry must be separated by the **\emptyseparator** + ```latex % Begin a new experiences environment to use experience and consultantexperience macro \begin{experiences} -% The experience macro work as below and can be used to describe a job experience +% The experience entry work as below and can be used to describe a job experience \experience {End date} {Experience title}{Enterprise}{Country} {Begin date} { @@ -69,5 +88,3 @@ To describe your experiences you have first to declare the _experiences_ environ {Technology highlights} \end{experiences} ``` - -Another macro has been set to perform conditional include. You have to put \demotrue or \demofalse once in your file to use \conditionalinput macro @@ -1,6 +1,6 @@ % !TEX TS-program = xelatex
-\documentclass{simple-awesome-cv}
+\documentclass{source-awesome-cv}
\name{Christophe}{ROGER}
\tagline{Chef de projet IT}
diff --git a/simple-awesome-cv.cls b/source-awesome-cv.cls index 0f63ed1..730252c 100755 --- a/simple-awesome-cv.cls +++ b/source-awesome-cv.cls @@ -1,4 +1,4 @@ -\ProvidesClass{simple-awesome-cv}[2016/09/20 v1.2 Simple Awesome CV Class] +\ProvidesClass{source-awesome-cv}[2016/09/20 v1.2 Source Awesome CV Class] \LoadClass[11pt,a4paper]{article} @@ -11,9 +11,9 @@ \setColors{Blue}{Blue}{Blue} \DeclareOption{green}{ - \renewcommand{\accentColor}{\color{Green}} - \renewcommand{\linkColor}{\color{Green}} - \renewcommand{\symbolcolor}{\textcolor{Green}} + \renewcommand{\accentColor}{\color{PineGreen}} + \renewcommand{\linkColor}{\color{PineGreen}} + \renewcommand{\symbolcolor}{\textcolor{PineGreen}} } \DeclareOption{red}{ \renewcommand{\accentColor}{\color{Red}} @@ -149,7 +149,7 @@ \newcommand\resumetitle[1]{ \par{ - \bigskip\center{\Large \accentColor#1\color{Black}}\par + \bigskip\center{\Large \accentColor\textsc{#1}\color{Black}}\par } \bigskip } |