diff options
author | Christophe Roger <darwiinc@live.fr> | 2016-10-19 06:35:45 +1100 |
---|---|---|
committer | Christophe Roger <darwiinc@live.fr> | 2016-10-19 06:35:45 +1100 |
commit | 37a8ecdf54b54e515509a77cbd86bd35f6fb607d (patch) | |
tree | e59d5e06073063f67d89c66cda2318cde2006c82 | |
parent | fde9c7fa63ee19cff6b7abf5b190b8e846d27a68 (diff) | |
parent | 814751aacf40201773348f0c9980c6f5cc37f6f7 (diff) | |
download | cv-37a8ecdf54b54e515509a77cbd86bd35f6fb607d.tar.gz cv-37a8ecdf54b54e515509a77cbd86bd35f6fb607d.tar.bz2 cv-37a8ecdf54b54e515509a77cbd86bd35f6fb607d.tar.xz cv-37a8ecdf54b54e515509a77cbd86bd35f6fb607d.zip |
Merge branch 'master' into local-github
-rwxr-xr-x | awesome-source-cv.cls | 15 | ||||
-rwxr-xr-x | section_scolarite.tex | 16 |
2 files changed, 23 insertions, 8 deletions
diff --git a/awesome-source-cv.cls b/awesome-source-cv.cls index 1abf5b4..84dfb97 100755 --- a/awesome-source-cv.cls +++ b/awesome-source-cv.cls @@ -227,6 +227,19 @@ % Resume part title definition \newcommand\sectionTitle[2]{\section{\texorpdfstring{\color{accentcolor}#2\enspace #1}{#1}}} +\newcolumntype{D}{>{\raggedleft}p{\leftcolumn}} + +% Define the 'scolarship' environment +\newenvironment{scolarship}{% + \begin{tabular}{D p{\rightcolumnlength}} +}{% + \end{tabular} +} + +\newcommand\scolarshipentry[2]{ + #1 & #2 \\ +} + % Define the 'skills' environment \newenvironment{skills}{% \begin{longtable}{R{\leftcolumn}p{\rightcolumnlength}} @@ -239,7 +252,7 @@ % \skill{<skill>}{<level>} \newcommand\skill[2]{ \textsc{#1} & \foreach \x in {1,...,5}{{\color{accentcolor!80} \ifnumgreater{\x}{#2}{\faCircleO}{\faCircle}}\enspace } \\ - } +} % Define the 'experiences' environment \newenvironment{experiences}{% diff --git a/section_scolarite.tex b/section_scolarite.tex index 288ad8e..1d99f1b 100755 --- a/section_scolarite.tex +++ b/section_scolarite.tex @@ -11,10 +11,12 @@ %Section: Scholarships and additional info
\sectionTitle{Formation}{\faMortarBoard}
-\begin{tabular}{>{\small}r>{\small}p{14cm}}
- \parbox{\datebox}{\raggedleft 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) \\
- 2004 & BTS Informatique de Gestion option administrateurs de réseaux \\
- 2000 & Baccalauréat Scientifique option Mathématiques
-\end{tabular}
\ No newline at end of file +
+\begin{scolarship}
+ \scolarshipentry{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)}
+ \scolarshipentry{2004}
+ {BTS Informatique de Gestion option administrateurs de réseaux}
+ \scolarshipentry{2000}
+ {Baccalauréat Scientifique option Mathématiques}
+\end{scolarship}
\ No newline at end of file |