5
0
Fork 0

INITIAL COMMIT

This commit is contained in:
m.haas 2023-04-21 13:25:15 +02:00
parent 7a7bafd7af
commit 46536e2b52
7 changed files with 283 additions and 0 deletions

34
pandocPipeline/header.md Normal file
View file

@ -0,0 +1,34 @@
---
documentclass: extarticle
fontsize: 12pt
geometry: margin=2cm
papersize: a4
header-includes: |
\usepackage{pdfpages}
\usepackage{trfsigns}
\usepackage[breakable]{tcolorbox}
\usepackage[compatV3]{fancyhdr}
\renewcommand{\contentsname}{Inhaltsverzeichnis}
\pagestyle{fancy}
\fancyhf{}
\setlength{\textheight}{700pt}
\setlength{\footskip}{5pt}
\setlength{\headheight}{52pt}
\rhead{\includegraphics[width=.3\textwidth]{path/to/Logo.png}}
\lhead{
Current version date: \today \\
Editor:
Title:
}
\cfoot{\thepage}
\renewcommand{\footrulewidth}{0.4pt}
\newtcolorbox{info-box}{colback=cyan!5!white,arc=0pt,outer arc=0pt,colframe=cyan!60!black}
\newtcolorbox{warning-box}{colback=orange!5!white,arc=0pt,outer arc=0pt,colframe=orange!80!black}
\newtcolorbox{error-box}{colback=red!5!white,arc=0pt,outer arc=0pt,colframe=red!75!black}
pandoc-latex-environment:
tcolorbox: [box]
info-box: [info]
warning-box: [warning]
error-box: [danger]
classoption: svgnames
---