diff options
author | Christophe Roger <darwiinc@live.fr> | 2017-05-18 12:56:21 +1100 |
---|---|---|
committer | Christophe Roger <darwiinc@live.fr> | 2017-05-18 12:56:21 +1100 |
commit | 9d0baa09a1d06234d38100a6f97f597f66727c63 (patch) | |
tree | 5f9da2d52504b4edd5a3fe597c7a4fb0e8039182 | |
parent | 8d07bc73ea90fa598194bbde2ed49d4740a44e63 (diff) | |
download | cv-9d0baa09a1d06234d38100a6f97f597f66727c63.tar.gz cv-9d0baa09a1d06234d38100a6f97f597f66727c63.tar.bz2 cv-9d0baa09a1d06234d38100a6f97f597f66727c63.tar.xz cv-9d0baa09a1d06234d38100a6f97f597f66727c63.zip |
Add a twocolumnsection command
-rwxr-xr-x | awesome-source-cv.cls | 12 | ||||
-rwxr-xr-x | section_langues.tex | 13 |
2 files changed, 22 insertions, 3 deletions
diff --git a/awesome-source-cv.cls b/awesome-source-cv.cls index fc800b9..6becd11 100755 --- a/awesome-source-cv.cls +++ b/awesome-source-cv.cls @@ -17,7 +17,7 @@ % % This work consists of the files awesome-source-cv.cls -\ProvidesClass{awesome-source-cv}[2016/11/05 v1.6.1 Awesome Source CV Class] +\ProvidesClass{awesome-source-cv}[2017/05/2017 v1.6.2 Awesome Source CV Class] \LoadClass[a4paper]{article} @@ -342,3 +342,13 @@ } \newcommand\emptySeparator{\multicolumn{2}{c}{}\\} + +\newcommand*\twocolumnsection[2]{ + \begin{minipage}[t]{\dimexpr(\linewidth/2) - 3em} + #1 + \end{minipage} + \hfill + \begin{minipage}[t]{\dimexpr(\linewidth/2) - 3em} + #2 + \end{minipage} + } diff --git a/section_langues.tex b/section_langues.tex index 01ac4e2..fd879c4 100755 --- a/section_langues.tex +++ b/section_langues.tex @@ -10,8 +10,17 @@ % CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/)
%Section: Languages
-\sectionTitle{Langues}{\faLanguage}
+\twocolumnsection
+{\sectionTitle{Langues}{\faLanguage}
\begin{skills}
\skill{Français}{5}
\skill{Anglais}{4}
-\end{skills}
\ No newline at end of file +\end{skills}}
+{\sectionTitle{Forces}{\faThumbsUp}
+\vspace{1em}
+\begin{itemize}
+ \item Autonomie
+ \item Prise d'initiative
+ \item Ponctuel
+\end{itemize}
+}
|