move template to own git project
This commit is contained in:
parent
3acf690891
commit
357bd0dd27
2 changed files with 70 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
# pandoc-moderncv
|
||||
|
||||
Pandoc Template um einen Lebenslauf mit dem LaTex Paket moderncv zu gestalten
|
||||
Pandoc Template um einen Lebenslauf mit dem LaTex Paket [moderncv](https://ctan.org/pkg/moderncv) zu gestalten
|
||||
|
||||
<WORK IN PROGRESS/>
|
||||
|
||||
License: CC-BY-NC L3D <l3d@c3woc.de>
|
||||
|
|
65
moderncv.tex
Normal file
65
moderncv.tex
Normal file
|
@ -0,0 +1,65 @@
|
|||
% 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}
|
||||
|
Loading…
Reference in a new issue