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/cv/writing.tex

29 lines
939 B
TeX
Raw Normal View History

[~ if (r.writing && r.writing.length ) { ~]
%-------------------------------------------------------------------------------
% SECTION TITLE
%-------------------------------------------------------------------------------
\cvsection{Writing}
%-------------------------------------------------------------------------------
% CONTENT
%-------------------------------------------------------------------------------
\begin{cventries}
[~ _.each( r.writing, function(wri) { ~]
%---------------------------------------------------------
\cventry
{[~ if (_.isString(wri.publisher)) { ~]
[[ wri.publisher]]
[~ } else { ~]
print( wri.publisher ? wri.publisher.name : 'Unknown' )
[~ } ~]} % Publisher
2016-02-14 03:48:52 +00:00
{[[ wri.title ]]} % Title
{[[ wri.url ]]} % URL
2016-02-14 03:48:52 +00:00
{[[ h.date(wri.date) ]]} % Date(s)
{[[ wri.summary ]]} % Summary
2015-12-08 03:10:54 +00:00
[~ }); ~]
%---------------------------------------------------------
\end{cventries}
2015-12-08 03:10:54 +00:00
[~ } ~]