pandoc-moderncv/moderncv.tex
2024-04-17 02:19:14 +02:00

86 lines
1.8 KiB
TeX

% License: CC-BY-NC L3D <l3d@c3woc.de>
\documentclass[11pt,a4paper,sans]{moderncv}
% ModernCV themes
\moderncvstyle{classic}
\moderncvcolor{blue}
% Character encoding
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
% Adjust the page margins
\usepackage[scale=0.8,top=2cm, bottom=2.5cm, left=2cm, right=2cm]{geometry}
\usepackage[german]{babel}
\setlength{\footskip}{149.60005pt}
% Personal data
\firstname{$vorname$}
\familyname{$name$}
\address{$street$}{$place$}
$if(phone)$
\phone{$phone$}
$endif$
$if(mail)$
\email{$mail$}
$endif$
$if(resumetitle)$
\title{$resumetitle$}
$endif$
$if(born)$
\born{$born$}
$endif$
$if(homepage)$
\homepage{$homepage$}
$endif$
% Social icons
$if(xing)$
\social[xing]{$xing$}
$endif$
$if(github)$
\social[github]{$github$}
$endif$
%-------------------------------------------------------------------------------
% Content
%-------------------------------------------------------------------------------
\begin{document}
% header
\makecvtitle
% Experience
\section{Erfahrung}
$for(erfahrung)$
\cventry{$erfahrung.date$}{$erfahrung.job$}{$erfahrung.company$}{\textit{$erfahrung.place$}}{}{}
$endfor$
% Education
\section{Ausbildung}
$for(ausbildung)$
$if(ausbildung.degree)$
\cventry{$ausbildung.date$}{$ausbildung.degree$}{$ausbildung.school$}{\textit{$ausbildung.place$}}{}{}
$else$
\cventry{$ausbildung.date$}{$ausbildung.school$}{$ausbildung.place$}{}{}{}
$endif$
$endfor$
% Skills
\section{Skills}
<<skills>>
% Engagement
\section{Soziales Engagement}
$for(engegement)$
$if(engegement.skill)$
\cventry{$engegement.date$}{$engegement.group$}{$engegement.place$}{$engegement.detail$}{}{\textit{($engegement.skill$)}}
$else$
\cventry{$engegement.date$}{$engegement.group$}{$engegement.place$}{$engegement.detail$}{}{}
$endif$
$endfor$
\end{document}