pandoc-moderncv/moderncv.tex

87 lines
1.8 KiB
TeX
Raw Normal View History

2024-04-16 17:49:42 +02:00
% 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}
2024-04-16 18:20:54 +02:00
\usepackage[german]{babel}
2024-04-16 17:49:42 +02:00
\setlength{\footskip}{149.60005pt}
% Personal data
2024-04-16 18:20:54 +02:00
\firstname{$vorname$}
\familyname{$name$}
2024-04-16 17:49:42 +02:00
\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}
2024-04-16 18:20:54 +02:00
% header
2024-04-16 17:49:42 +02:00
\makecvtitle
2024-04-17 02:19:14 +02:00
% Experience
\section{Erfahrung}
$for(erfahrung)$
\cventry{$erfahrung.date$}{$erfahrung.job$}{$erfahrung.company$}{\textit{$erfahrung.place$}}{}{}
$endfor$
2024-04-16 17:49:42 +02:00
% Education
2024-04-16 18:20:54 +02:00
\section{Ausbildung}
$for(ausbildung)$
2024-04-17 02:19:14 +02:00
$if(ausbildung.degree)$
\cventry{$ausbildung.date$}{$ausbildung.degree$}{$ausbildung.school$}{\textit{$ausbildung.place$}}{}{}
$else$
\cventry{$ausbildung.date$}{$ausbildung.school$}{$ausbildung.place$}{}{}{}
$endif$
2024-04-16 18:20:54 +02:00
$endfor$
2024-04-16 17:49:42 +02:00
% Skills
\section{Skills}
<<skills>>
2024-04-17 02:19:14 +02:00
% 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$
2024-04-16 17:49:42 +02:00
\end{document}