diff options
author | Christophe Roger <darwiinc@live.fr> | 2016-12-02 06:53:14 +1100 |
---|---|---|
committer | Christophe Roger <darwiinc@live.fr> | 2016-12-02 06:53:14 +1100 |
commit | 25c07c70e7b91557e3a6191e0abb88bd0f87936e (patch) | |
tree | 6af825844a52904a09ce00fc41035fa19052fa8d | |
parent | 06493fe0281cca308cf9b243ab002cc6773c7367 (diff) | |
download | cv-25c07c70e7b91557e3a6191e0abb88bd0f87936e.tar.gz cv-25c07c70e7b91557e3a6191e0abb88bd0f87936e.tar.bz2 cv-25c07c70e7b91557e3a6191e0abb88bd0f87936e.tar.xz cv-25c07c70e7b91557e3a6191e0abb88bd0f87936e.zip |
Updated readme with how to write the languages section of the resume.
-rwxr-xr-x | README.md | 24 |
1 files changed, 21 insertions, 3 deletions
@@ -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>}{<level>} + \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). |