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}
|
|
|
|
|
|
|
|
% Graphics
|
|
|
|
\usepackage{graphicx}
|
|
|
|
|
|
|
|
% Color
|
|
|
|
\usepackage[svgnames]{xcolor}
|
|
|
|
\colorlet{linkcolor}{DarkBlue}
|
|
|
|
|
|
|
|
% Hyperlinks
|
|
|
|
\usepackage[pdfusetitle]{hyperref}
|
2017-07-17 18:57:29 +02:00
|
|
|
\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}
|
2017-07-17 18:57:29 +02:00
|
|
|
\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}
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
|
|
|
|
\frontmatter
|
|
|
|
\maketitle
|
|
|
|
\tableofcontents
|
|
|
|
|
|
|
|
\mainmatter
|
|
|
|
\include{content/introduction}
|
|
|
|
|
|
|
|
\backmatter
|
|
|
|
|
|
|
|
\end{document}
|