statuten/handbook.tex

66 lines
1.1 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}
% 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}
\begin{document}
\frontmatter
\maketitle
\tableofcontents
\mainmatter
\include{content/introduction}
\backmatter
\end{document}