66 lines
1.1 KiB
TeX
66 lines
1.1 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[ngerman]{babel}
|
||
|
\setlength{\footskip}{149.60005pt}
|
||
|
|
||
|
% Personal data
|
||
|
\name{$vorname$}{$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}
|
||
|
|
||
|
% Resume header
|
||
|
\makecvtitle
|
||
|
|
||
|
% Education
|
||
|
\section{Education}
|
||
|
<<education>>
|
||
|
|
||
|
% Experience
|
||
|
\section{Experience}
|
||
|
<<experience>>
|
||
|
|
||
|
% Skills
|
||
|
\section{Skills}
|
||
|
<<skills>>
|
||
|
|
||
|
\end{document}
|
||
|
|