From 38d94ca90984182d30be27e633ba2a02e167be1b Mon Sep 17 00:00:00 2001 From: Christophe Roger Date: Wed, 21 Sep 2016 22:58:41 +1100 Subject: Updated README --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e30ff39..765a1c7 100755 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ 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. @@ -23,8 +23,9 @@ I've chosen to cut my resume in a couple of smaller files and to add some macro % Usage: \tagline{} % Mandatory \tagline{Chef de projet IT} +``` - +```latex \socialinfo{ \linkedin{christopheroger} \viadeo{christopheroger} @@ -47,7 +48,7 @@ To describe your experiences you have first to declare the **experiences** envir \end{experiences} ``` -Then you can fill the environment with **\experience** and **\consultantexperience** entries. Each +Then you can describe your experiences using **\experience** and **\consultantexperience** entries. Each entry must be separated by the **\emptyseparator** ```latex @@ -86,5 +87,3 @@ entry must be separated by the **\emptyseparator** {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 -- cgit v1.2.3 From 54dbbd28b2b52015afc3e7ac8fbc9b4764818c49 Mon Sep 17 00:00:00 2001 From: Christophe Roger Date: Wed, 21 Sep 2016 23:25:17 +1100 Subject: Style Renaming README updating --- README.md | 3 +- cv.tex | 2 +- simple-awesome-cv.cls | 210 -------------------------------------------------- source-awesome-cv.cls | 210 ++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 213 insertions(+), 212 deletions(-) delete mode 100755 simple-awesome-cv.cls create mode 100755 source-awesome-cv.cls diff --git a/README.md b/README.md index 765a1c7..b95b3c0 100755 --- a/README.md +++ b/README.md @@ -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. @@ -25,6 +25,7 @@ I've chosen to cut my resume in a couple of smaller files and to add some macro \tagline{Chef de projet IT} ``` + ```latex \socialinfo{ \linkedin{christopheroger} diff --git a/cv.tex b/cv.tex index 7a212e4..da7e583 100755 --- a/cv.tex +++ b/cv.tex @@ -1,6 +1,6 @@ % !TEX TS-program = xelatex -\documentclass{simple-awesome-cv} +\documentclass{source-awesome-cv} \name{Christophe}{ROGER} diff --git a/simple-awesome-cv.cls b/simple-awesome-cv.cls deleted file mode 100755 index 0048b23..0000000 --- a/simple-awesome-cv.cls +++ /dev/null @@ -1,210 +0,0 @@ -\ProvidesClass{simple-awesome-cv}[2016/09/20 v1.2 Simple Awesome CV Class] - -\LoadClass[11pt,a4paper]{article} - -\newcommand{\setColors}[3] { - \newcommand{\accentColor}{\color{#1}} - \newcommand{\linkColor}{\color{#1}} - \newcommand{\symbolcolor}{\textcolor{#1}} -} - -\setColors{Blue}{Blue}{Blue} - -\DeclareOption{green}{ - \renewcommand{\accentColor}{\color{Green}} - \renewcommand{\linkColor}{\color{Green}} - \renewcommand{\symbolcolor}{\textcolor{Green}} -} -\DeclareOption{red}{ - \renewcommand{\accentColor}{\color{Red}} - \renewcommand{\linkColor}{\color{Red}} - \renewcommand{\symbolcolor}{\textcolor{Red}} -} -\DeclareOption{myBlue}{ - \renewcommand{\accentColor}{\color{myBlue}} - \renewcommand{\linkColor}{\color{myBlue}} - \renewcommand{\symbolcolor}{\textcolor{myBlue}} -} -\ProcessOptions - -% Dependences -%A Few Useful Packages -\RequirePackage[frenchb]{babel} -\RequirePackage[T1]{fontenc} -\RequirePackage{fontspec} % for loading fonts -\RequirePackage{xunicode,xltxtra,url,parskip} % other packages for formatting -\RequirePackage[usenames,dvipsnames]{xcolor} -\RequirePackage{fullpage} -\RequirePackage[margin=1.5cm]{geometry} -\RequirePackage{fontawesome} -\RequirePackage{hyperref} -\RequirePackage{titlesec} -\RequirePackage{array} -\RequirePackage{enumitem} -\RequirePackage{longtable} - -\definecolor{myBlue}{HTML}{FF9B1C} - -% Setup hyperref package, and colours for links -\definecolor{linkcolour}{rgb}{0,0.2,0.6} -\hypersetup{breaklinks} - -\pagestyle{empty} % non-numbered pages -\font\fb=''[cmr10]'' % for use with \LaTeX command - -% Setup CV sections -\titleformat{\section}{\Large\raggedright}{}{0em}{}[\titlerule] -\titlespacing{\section}{0pt}{2pt}{2pt} - -% Configure list -\setlist[itemize,1]{label=\faAngleRight, nosep, leftmargin=2em} - -% Setup Array : new column type -\newcolumntype{R}[1]{>{\hfill}m{#1}} - -%Italian hyphenation for the word: ''corporations'' -\hyphenation{im-pre-se} - -% Setup fonts -\defaultfontfeatures{Mapping=tex-text} -%\setmainfont[BoldFont = Helvetica Neue, ItalicFont=Helvetica Neue Thin Italic ,SmallCapsFont = Helvetica Neue Light]{Helvetica Neue Thin} -\setmainfont[BoldFont = Source Sans Pro Semibold, ItalicFont=Source Sans Pro Light Italic,SmallCapsFont = Source Sans Pro]{Source Sans Pro Light} - -%New length definition -\newlength{\datebox} -\settowidth{\datebox}{Décembre 2009} - -\newlength{\rightcolumnlength} -\setlength{\rightcolumnlength}{14.8cm} - -\newlength{\leftcolumn} -\setlength{\leftcolumn}{2.5cm} - -% Macros - -\newcommand{\mailSymbol}{\faAt} -\newcommand{\locationSymbol}{\faMapMarker} -\newcommand{\infoSymbol}{\faInfo} -\newcommand{\linkedinSymbol}{\faLinkedin} -\newcommand{\viadeoSymbol}{\faViadeo} -\newcommand{\mobileSymbol}{\faMobilePhone} -\newcommand{\githubSymbol}{\faGithub} - -\newcommand\link[2]{\linkColor\href{#1}{#2}\color{Black} } -\newcommand\important[1]{\textbf #1} - -% Render author's name -% Usage: \user{}{} -\newcommand\user[2]{\accentColor{\LARGE #1 \textbf{#2}}\color{Black}} % Username - -% Render a text with its symbol -% Usage; \socialtext{}{