statuten/handbook.tex

87 lines
1.4 KiB
TeX
Raw Normal View History

2017-07-13 18:29:24 +02:00
\documentclass[a5paper,DIV=calc,parskip=half]{scrbook}
\title{Handbook of Truth}
\author{IT-Syndikat}
\date{\today}
% Fixes
\usepackage{scrhack}
% Title
\usepackage{titling}
\pretitle{\begin{center}\includegraphics{gfx/its_logo.pdf}\LARGE\\[5em]}
\posttitle{\end{center}}
% Fonts
\usepackage[T1]{fontenc}
\usepackage{fontawesome}
% Unicode Support
\usepackage[utf8]{inputenc}
2017-07-20 21:23:50 +02:00
% Language
\usepackage[main=british,german]{babel}
2017-07-17 18:58:29 +02:00
% Text
2017-07-22 11:08:08 +02:00
\usepackage{enumitem}
2017-07-20 21:23:50 +02:00
\usepackage{microtype}
2017-07-22 11:09:13 +02:00
\usepackage{multicol}
2017-07-17 18:58:29 +02:00
\usepackage{seqsplit}
2017-07-13 18:29:24 +02:00
% Graphics
\usepackage{graphicx}
% Color
\usepackage[svgnames]{xcolor}
\colorlet{linkcolor}{DarkBlue}
% Hyperlinks
\usepackage[pdfusetitle]{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=linkcolor,
citecolor=linkcolor,
urlcolor=linkcolor
}
2017-07-13 18:29:24 +02:00
% References
\usepackage[capitalise,nameinlink,noabbrev]{cleveref}
% Source Code
\usepackage{listings}
\lstset{
basicstyle=\footnotesize\ttfamily,
breaklines=true,
frame=tb,
numberstyle=\tiny,
showstringspaces=false,
xleftmargin=2em
}
2017-07-13 18:29:24 +02:00
% Document Specific Packages
\usepackage{lipsum}
2017-07-17 18:58:29 +02:00
% Document Specific Macros
\newcommand{\maintainer}[2]{%
{\footnotesize%
\textbf{Maintainer:} #1
\href{mailto:#2}{\texttt{\seqsplit{<#2>}}}
}%
}
2017-07-13 18:29:24 +02:00
\begin{document}
\frontmatter
\maketitle
\tableofcontents
\mainmatter
\include{content/introduction}
2017-07-22 11:10:36 +02:00
\include{content/infrastructure}
2017-07-22 11:08:08 +02:00
\appendix
2017-07-20 21:23:50 +02:00
\include{content/statuten}
2017-07-13 18:29:24 +02:00
\backmatter
\end{document}