103 lines
2.3 KiB
TeX
Raw Permalink Normal View History

2021-10-28 09:42:13 +02:00
%
% Project header
%
\documentclass[
12pt, % 12pt font size
pdftex, % we are just using pdf
a4paper, % a4 paper format
titlepage,% title has its own page
oneside, % single-page view
%twocolumn,% use two text columns
headsepline, % hr after headline
footsepline, % hr before footer,
bibliography=totoc, % Include literaturverzeichnis in inhaltsverzeichnis
listoftables=totoc,
ngerman, % it's a german document
2022-10-24 08:26:17 +00:00
%draft, % create debug build. remove for release build
hidelinks, % avoid weird ref highlighting
2021-10-28 10:59:42 +02:00
]{scrbook}
2021-10-28 09:42:13 +02:00
% Make image and chapter numbers continuous
\counterwithout{figure}{chapter}
\counterwithout{table}{chapter}
2022-01-02 15:19:25 +01:00
% Load project configuration
\input{config}
2021-10-28 09:42:13 +02:00
\parindent=0pt % disable paragraph indent
\usepackage{ngerman}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
% Paket um Grafiken im Dokument einbetten zu k<>nnen.
% Im PDF sind GIF, PNG, und PDF Grafiken m<>glich.
\usepackage{graphicx}
% caption setzt per default hypcap=true, sodass Sprungmarken im PDF-File nicht nur
% zu den Captions von Bildern springen, sondern an den oberen Rand der Bilder.
\usepackage{caption}
% Font 'Latin Modern Family' verwenden.
% Verwende dieses Paket wenn du DML selbst kompilierst.
\usepackage{lmodern}
2022-01-02 15:19:25 +01:00
% Tabellen
2021-10-28 09:42:13 +02:00
\usepackage{array}
% Mathematische Formeln
\usepackage{amsmath, amsthm, amssymb, mathtools}
2022-01-02 15:19:25 +01:00
% Deutsche Anführungszeichen
2021-10-28 09:42:13 +02:00
\usepackage[babel, german=quotes]{csquotes}
% Mehrere Bilder als eine Abbildung
\usepackage{subcaption}
% Seiten-bottom-padding
\usepackage[bottom=2.5cm]{geometry}
% Dashed lines
\usepackage{arydshln}
% Colored text
\usepackage{color}
% Custom title format
\usepackage{sectsty}
\allsectionsfont{\rmfamily}
\chaptertitlefont{\rmfamily\hspace*{0.5em}}
2022-01-02 15:19:25 +01:00
% Zeilenabstand 1.5
\usepackage[onehalfspacing]{setspace}
2021-10-28 09:42:13 +02:00
% Tab-respecting code printing
\usepackage{fancyvrb}
% Abkürzungsverzeichnis
\usepackage{acronym}
2022-02-03 14:09:50 +01:00
% Appendix
\usepackage[toc,page]{appendix}
\renewcommand{\appendixname}{Anhang}
\renewcommand{\appendixtocname}{Anhang}
\renewcommand{\appendixpagename}{Anhang}
2023-01-27 04:00:17 +01:00
% Multiline table entries
\usepackage{makecell}
2021-10-28 09:42:13 +02:00
% Metadaten
\usepackage[pdftex,
2022-01-02 15:19:25 +01:00
pdfauthor={\cfgAuthorName},
pdftitle={\cfgDocTitle},
pdfsubject={\cfgDocSubTitle},
2021-10-28 09:42:13 +02:00
pdfproducer={Latex},
pdfcreator={pdflatex}]{hyperref}
% Load custom macros
\input{macros}
% Load custom environments
\input{environments}