1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2024-06-02 03:00:05 +01:00
fresh-themes/themes/awesome/src/latex/examples/resume/writing.tex
2016-02-11 22:00:34 -05:00

29 lines
987 B
TeX

[~ if (r.writing && r.writing.length ) { ~]
%-------------------------------------------------------------------------------
% SECTION TITLE
%-------------------------------------------------------------------------------
\cvsection{Writing}
%-------------------------------------------------------------------------------
% CONTENT
%-------------------------------------------------------------------------------
\begin{cventries}
[~ _.each( r.writing, function(wri) { ~]
%---------------------------------------------------------
\cventry
{[[ wri.title ]]} % Role
{[[ wri.publisher ]]} % Title
{[[ wri.url ]]} % Location
{[[ wri.date ]]} % Date(s)
{[~ if (wri.highlights && wri.highlights.length) { ~]
\begin{cvitems} % Description(s)
[~ print( h.pad( wri.highlights.map( function(h) { return '\\item {' + h + '}' }), -8 ) ) ~]
\end{cvitems}
[~ } ~]}
[~ }); ~]
%---------------------------------------------------------
\end{cventries}
[~ } ~]