From dce9c8d4a02d9484315de62b226c39eadf0c33da Mon Sep 17 00:00:00 2001 From: Christophe Roger Date: Tue, 11 Oct 2016 21:17:41 +1100 Subject: Link on readme updated --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 32e7775..b33f39e 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Awesome Source CV [![Example](https://img.shields.io/badge/Exemple-pdf-blue.svg)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf) +Awesome Source CV [![Example](https://img.shields.io/badge/Exemple-pdf-blue.svg)](https://github.com/darwiin/awesome-neue-latex-cv/releases/download/v1.2-github/cv.pdf) ================= ## About -- cgit v1.2.3 From b7a1753a4dbf79a001f8601fc1b29bd7dbe3514a Mon Sep 17 00:00:00 2001 From: Christophe Roger Date: Sun, 23 Oct 2016 19:58:03 +1100 Subject: Updated readme with link on a the last release binary --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index b33f39e..18c4685 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Awesome Source CV [![Example](https://img.shields.io/badge/Exemple-pdf-blue.svg)](https://github.com/darwiin/awesome-neue-latex-cv/releases/download/v1.2-github/cv.pdf) +Awesome Source CV [![Example](https://img.shields.io/badge/Exemple-pdf-blue.svg)](https://github.com/darwiin/awesome-neue-latex-cv/releases/download/1.4-github/cv.pdf) ================= ## About -- cgit v1.2.3 From c9a2dee89b0dc1a62a727be90fd9aa8769c69917 Mon Sep 17 00:00:00 2001 From: Christophe Roger Date: Tue, 25 Oct 2016 22:51:21 +1100 Subject: Updated README.md Cleaner cls file --- README.md | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 32e7775..bb8b268 100755 --- a/README.md +++ b/README.md @@ -21,18 +21,44 @@ You can edit online **Awesome Source Latex CV** on [Overleaf](https://www.overle ## How to use **Awesome Source CV** latex class +### Construct the header + ```latex % Define author's name % Usage: \name{}{} % Mandatory \name{Christophe}{ROGER} +% Define author's photo (optional) +% Usage \photo{}{} +\photo{2.5cm}{darwiin} + % Define author's tagline % Usage: \tagline{} % Mandatory \tagline{Chef de projet IT} ``` +```latex +% Render author's linked-in (optional) +% Usage: \linkedin{} +\linkedin{christopheroger} + +% Render author's viadeo(optional) +% Usage: \viadeo{} +\viadeo{christopheroger} + +% Render author's github (optional) +% Usage: \github{} +\github{darwiin} + +% Render author's email (optional) +% Usage: \email{} +\email{christophe.roger@mail.com} +``` + +The command above must be integrated in the `\socialinfo` wrapper + ```latex \socialinfo{ \linkedin{christopheroger} @@ -45,7 +71,9 @@ You can edit online **Awesome Source Latex CV** on [Overleaf](https://www.overle } ``` -To describe your experiences you have first to declare the **experiences** environment +### Construct the _experiences_ section + +To describe your experiences you have first to declare the `experiences` environment ```latex % Begin a new experiences environment to use experience and consultantexperience macro -- cgit v1.2.3 From 6ce7239d79d441407c66c3bc8d58ba3f601873a5 Mon Sep 17 00:00:00 2001 From: Christophe Roger Date: Wed, 26 Oct 2016 00:15:16 +1100 Subject: Updated README.md --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index bb8b268..dfd3013 100755 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Awesome Source CV [![Example](https://img.shields.io/badge/Exemple-pdf-blue.svg) **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. -Original Alessandro Plasmati template and more informations can be found here : +More informations about the original Alessandro Plasmati template can be found here : - [ Scribd ](http://fr.scribd.com/doc/16335667/Writing-your-Professional-CV-with-LaTeX) - [ LaTeX Templates ](http://www.latextemplates.com/template/plasmati-graduate-cv) @@ -17,12 +17,14 @@ Unlike _Alessandro Plasmati_ CV template, all layout stuff in **Awesome Source L ## Quick start -You can edit online **Awesome Source Latex CV** on [Overleaf](https://www.overleaf.com/latex/templates/awesome-source-cv/wrdjtkkytqcw). Feel free to use my [invite link](https://www.overleaf.com/signup?ref=54c221604cd6) if you want to create your account. +You can edit online **Awesome Source Latex CV** on [Overleaf](https://www.overleaf.com/latex/templates/awesome-source-cv/wrdjtkkytqcw). Feel free to use my [referal link](https://www.overleaf.com/signup?ref=54c221604cd6) if you want to create your account. ## How to use **Awesome Source CV** latex class ### Construct the header +Outside of the `\socialinfo` wrapper you have to define the mandatory parameters `\name`and `\tagline`. + ```latex % Define author's name % Usage: \name{}{} @@ -39,6 +41,8 @@ You can edit online **Awesome Source Latex CV** on [Overleaf](https://www.overle \tagline{Chef de projet IT} ``` +Most social network have their command to render a clickable link or simple text label. + ```latex % Render author's linked-in (optional) % Usage: \linkedin{} @@ -57,7 +61,7 @@ You can edit online **Awesome Source Latex CV** on [Overleaf](https://www.overle \email{christophe.roger@mail.com} ``` -The command above must be integrated in the `\socialinfo` wrapper +The command above must be integrated in the `\socialinfo` wrapper. You are free to add `\\` when you want to force a new line. ```latex \socialinfo{ -- cgit v1.2.3 From 79e68db599386b9ce534b52a895589dd94eaec17 Mon Sep 17 00:00:00 2001 From: Christophe Roger Date: Wed, 2 Nov 2016 14:42:54 +1100 Subject: Updated readme.md --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index dfd3013..38b6bce 100755 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ You can edit online **Awesome Source Latex CV** on [Overleaf](https://www.overle ### Construct the header -Outside of the `\socialinfo` wrapper you have to define the mandatory parameters `\name`and `\tagline`. +Outside of the `\socialinfo` wrapper you have to define the mandatory parameters `\name` and `\tagline`. ```latex % Define author's name @@ -41,7 +41,7 @@ Outside of the `\socialinfo` wrapper you have to define the mandatory parameters \tagline{Chef de projet IT} ``` -Most social network have their command to render a clickable link or simple text label. +Most social network have their command to render a clickable link or a simple text entry. ```latex % Render author's linked-in (optional) @@ -61,7 +61,7 @@ Most social network have their command to render a clickable link or simple text \email{christophe.roger@mail.com} ``` -The command above must be integrated in the `\socialinfo` wrapper. You are free to add `\\` when you want to force a new line. +Put these command in the `\socialinfo` wrapper. Feel free to add `\\` when you want to force a new line. ```latex \socialinfo{ @@ -75,6 +75,12 @@ The command above must be integrated in the `\socialinfo` wrapper. You are free } ``` +Use the `\makecvheader`commabd to generate the header. + +```latex +\makecvheader +``` + ### Construct the _experiences_ section To describe your experiences you have first to declare the `experiences` environment -- cgit v1.2.3 From 572466e392939350b5d3b2a89419f3c9fe4c1d42 Mon Sep 17 00:00:00 2001 From: Christophe Roger Date: Wed, 2 Nov 2016 14:54:12 +1100 Subject: Updated readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 38b6bce..96adc6c 100755 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Put these command in the `\socialinfo` wrapper. Feel free to add `\\` when you w } ``` -Use the `\makecvheader`commabd to generate the header. +Use the `\makecvheader`command to generate the header. ```latex \makecvheader -- cgit v1.2.3 From 59124741a72fbef06ce1c2c28dca186957c6b322 Mon Sep 17 00:00:00 2001 From: Christophe Roger Date: Wed, 9 Nov 2016 06:01:47 +1100 Subject: Updated README.md with informations on how to use documentclass options --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index 96adc6c..c34f639 100755 --- a/README.md +++ b/README.md @@ -21,6 +21,25 @@ You can edit online **Awesome Source Latex CV** on [Overleaf](https://www.overle ## How to use **Awesome Source CV** latex class +### Use the **Awesome Source CV** options + +When declaring the `\documentclass` you can use some option(s) to customize your CV rendering. + +```latex +% Used with no option, the template will use the 'traditional' +% header formatting your system fonts and the default color scheme +\documentclass{awesome-source-cv} + +% Used with localFont option the template will use the 'traditional' +% header formatting, fonts included in the fonts directory and the default color scheme +\documentclass[localFont]{awesome-source-cv} + +% Used with localFont option, the template will use the 'alternative' +% header formatting, your system fonts and the default color scheme +\documentclass[alternative]{awesome-source-cv} + +``` + ### Construct the header Outside of the `\socialinfo` wrapper you have to define the mandatory parameters `\name` and `\tagline`. -- cgit v1.2.3 From 25c07c70e7b91557e3a6191e0abb88bd0f87936e Mon Sep 17 00:00:00 2001 From: Christophe Roger Date: Fri, 2 Dec 2016 06:53:14 +1100 Subject: Updated readme with how to write the languages section of the resume. --- README.md | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index a416bfe..5a1491d 100755 --- a/README.md +++ b/README.md @@ -27,15 +27,15 @@ When declaring the `\documentclass` you can use some option(s) to customize your ```latex % Used with no option, the template will use the 'traditional' -% header formatting your system fonts and the default color scheme +% header layout your system fonts and the default color scheme ie. blue \documentclass{awesome-source-cv} % Used with localFont option the template will use the 'traditional' -% header formatting, fonts included in the fonts directory and the default color scheme +% header layout, fonts included in the fonts directory and the default color scheme \documentclass[localFont]{awesome-source-cv} % Used with localFont option, the template will use the 'alternative' -% header formatting, your system fonts and the default color scheme +% header layout, your system fonts and the default color scheme \documentclass[alternative]{awesome-source-cv} ``` @@ -153,6 +153,24 @@ entry must be separated by the **\emptyseparator** \end{experiences} ``` +### Construct the _languages_ section + +The _languages_ section use the *skills* environment. + +```latex +% Begin a new skills environment and fill it with skill entries + \begin{skills} + +% Render a skill in the skills environment +% Usage: \skill{}{} + \skill{Français}{5} + \skill{Anglais}{4} + +% End the skills environment + \end{skills} +``` + + ## License Latex class file _awesome-source-cv.cls_ is published under the term of the [LPPL Version 1.3c](https://www.latex-project.org/lppl.txt). -- cgit v1.2.3 From efdd5434827f24b6eace622704f9681915a848a3 Mon Sep 17 00:00:00 2001 From: Christophe Roger Date: Sat, 3 Dec 2016 10:00:08 +1100 Subject: - New scolarship section on the README.md - Other minor updates on the README.md --- README.md | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 5a1491d..71a2384 100755 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Awesome Source CV [![Example](https://img.shields.io/badge/Exemple-pdf-blue.svg) ## About -**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. +**Awesome Source Latex CV** was originally based on a CV template created by Alessandro Plasmati. Thi template use _XeLaTeX_ engine and _[Fontin Sans](http://www.exljbris.com/fontinsans.html)_ font. More informations about the original Alessandro Plasmati template can be found here : @@ -11,9 +11,9 @@ More informations about the original Alessandro Plasmati template can be found h - [ LaTeX Templates ](http://www.latextemplates.com/template/plasmati-graduate-cv) - [ ShareLatex ](https://www.sharelatex.com/templates/cv-or-resume/professional-cv) -**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. +**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 highlight important elements. -Unlike _Alessandro Plasmati_ CV template, all layout stuff in **Awesome Source Latex CV** has moved in the Latex class file _awesome-source-cv.cls_. +Unlike _Alessandro Plasmati_ CV template, all layout stuff in **Awesome Source Latex CV** has moved in the Latex class file _awesome-source-cv.cls_ to imptove source code readability. ## Quick start @@ -23,7 +23,7 @@ You can edit online **Awesome Source Latex CV** on [Overleaf](https://www.overle ### Use the **Awesome Source CV** options -When declaring the `\documentclass` you can use some option(s) to customize your CV rendering. +When declaring the `\documentclass` you can use option(s) to customize your CV rendering. ```latex % Used with no option, the template will use the 'traditional' @@ -155,14 +155,14 @@ entry must be separated by the **\emptyseparator** ### Construct the _languages_ section -The _languages_ section use the *skills* environment. +The _languages_ section use the **skills** environment. ```latex % Begin a new skills environment and fill it with skill entries \begin{skills} % Render a skill in the skills environment -% Usage: \skill{}{} +% Usage: \skill{}{} \skill{Français}{5} \skill{Anglais}{4} @@ -170,6 +170,21 @@ The _languages_ section use the *skills* environment. \end{skills} ``` +### Construct the _scolarship_ section + +The _scolarship_ section ise the **scolarship** environment. + +```latex + \begin{scholarship} + +% Render a scholarshipentry in the scolarship environment +% Usage: \scholarshipentry{}{} + \scholarshipentry{2007} + {Master STIC Professionel filière MBDS de l'Université de Nice Sophia Antipolis (Master Informatique spécialité Multimédia, Base de Données et intégration de Systèmes)} + \scholarshipentry{2005} + {Licence Sciences et Technologies, Mention Informatique, de l'Université de Nouvelle-Calédonie} + \end{scholarship} +``` ## License -- cgit v1.2.3