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 /awesome-source-cv.cls | |
parent | 8d07bc73ea90fa598194bbde2ed49d4740a44e63 (diff) | |
download | cv-9d0baa09a1d06234d38100a6f97f597f66727c63.tar.gz cv-9d0baa09a1d06234d38100a6f97f597f66727c63.tar.bz2 cv-9d0baa09a1d06234d38100a6f97f597f66727c63.tar.xz cv-9d0baa09a1d06234d38100a6f97f597f66727c63.zip |
Add a twocolumnsection command
Diffstat (limited to 'awesome-source-cv.cls')
-rwxr-xr-x | awesome-source-cv.cls | 12 |
1 files changed, 11 insertions, 1 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} + } |