From 0917ec57b08798e094fc0ea533b070663b63bb33 Mon Sep 17 00:00:00 2001 From: Christophe ROGER Date: Sun, 30 Jun 2019 15:45:39 +1100 Subject: [EVO] Add new size option [FIX] Change demo adresse --- example/cv.tex | 4 ++-- yaac-another-awesome-cv.cls | 12 ++++++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/example/cv.tex b/example/cv.tex index 1d94839..3b67a54 100755 --- a/example/cv.tex +++ b/example/cv.tex @@ -10,10 +10,10 @@ % Template license: % CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/) -\documentclass[localFont,alternative]{yaac-another-awesome-cv} +\documentclass[localFont,alternative,10pt]{yaac-another-awesome-cv} \name{Christophe}{Roger} \tagline{Architecte Logiciel | Développeur/Concepteur Senior Java/JEE} -\photo{2.5cm}{cr} +\photo{2.5cm}{darwiin} \socialinfo{ \linkedin{christopheroger} \github{darwiin}\\ diff --git a/yaac-another-awesome-cv.cls b/yaac-another-awesome-cv.cls index 66daa59..e002a33 100755 --- a/yaac-another-awesome-cv.cls +++ b/yaac-another-awesome-cv.cls @@ -17,9 +17,17 @@ % % This work consists of the files awesome-source-cv.cls -\ProvidesClass{yaac-another-awesome-cv}[2018/10/17 v1.10.2 'YAAC: Another Awesome CV' Class] +\ProvidesClass{yaac-another-awesome-cv}[2019/06/18 v2.0.0 'YAAC: Another Awesome CV' Class] -\LoadClass[a4paper]{article} +\def\@@ptsize{10pt} + +\DeclareOption{10pt}{\def\@@ptsize{10pt}} +\DeclareOption{11pt}{\def\@@ptsize{11pt}} +\DeclareOption{12pt}{\def\@@ptsize{12pt}} + +\ProcessOptions\relax + +\LoadClass[a4paper,\@@ptsize]{article} \newif\if@showLinks \@showLinksfalse -- cgit v1.2.1 From 70d162aba67768540318101ac9ccb2aaafd41ee4 Mon Sep 17 00:00:00 2001 From: Christophe ROGER Date: Sun, 30 Jun 2019 16:36:02 +1100 Subject: [FIX] Updated README --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8585a61..797c982 100755 --- a/README.md +++ b/README.md @@ -48,10 +48,15 @@ When declaring the `\documentclass` you can use option(s) to customize your CV r % header layout, fonts included in the fonts directory and the default color scheme \documentclass[localFont]{yaac-another-awesome-cv} -% Used with localFont option, the template will use the 'alternative' +% Used with alternative option, the template will use the 'alternative' % header layout, your system fonts and the default color scheme \documentclass[alternative]{yaac-another-awesome-cv} +% Used with localFont, alternative and 10pt options the template will use the 'alternative' +% header layout, fonts included in the fonts directory, the default color scheme and the '10pt' font size. +% Based on the article document class, size options are 10pt, 11pt and 12pt +\documentclass[localFont,alternative,10pt]{yaac-another-awesome-cv} + ``` ### Construct the header -- cgit v1.2.1