pandoc-moderncv/moderncv.tex

69 lines
1.2 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
% Education
2024-04-16 18:20:54 +02:00
\section{Ausbildung}
$for(ausbildung)$
\cventry{$when$}{Foo}{Bar}{Baz}
$endfor$
2024-04-16 17:49:42 +02:00
% Experience
\section{Experience}
<<experience>>
% Skills
\section{Skills}
<<skills>>
\end{document}