masterthesis/report.tex
Valentin Brandl 73073ded36 More content
2022-03-08 20:15:29 +01:00

109 lines
2.0 KiB
TeX

% silence external warnings
\RequirePackage{silence}
\WarningFilter{scrreprt}{Usage of package `titlesec'}
\WarningFilter{scrreprt}{Activating an ugly workaround}
\WarningFilter{titlesec}{Non standard sectioning command detected}
\WarningFilter{microtype}{protrusion codes list}
\WarningFilter{latexfont}{Font}
\WarningFilter{latexfont}{Some font shapes}
% \documentclass[11pt]{diazessay}
\documentclass[a4paper,
DIV=13,
12pt,
BCOR=10mm,
department=FakIM,
% lucida,
% KeepRoman,
oneside,
parskip=half,
automark,
headsepline,
% footsepline,
]{OTHRartcl}
% document language and hyphenation
\usepackage[main=english,english,ngerman]{babel}
% math stuff
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{mathtools}
% positioning
\usepackage{float}
\usepackage{todonotes}
% timelines
\usepackage{chronology}
% code listings
\usepackage{minted}
% UTF-8 encoding
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
% language specific quotes and general recommendations for biblatex
\usepackage{lmodern,xpatch}
\usepackage[autostyle]{csquotes}
% units
\usepackage{siunitx}
\DeclareSIUnit \request{req}
% images
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
% acronyms
\usepackage{acro}
\include{acronyms}
% bibliography
\usepackage[datamodel=archived,backend=biber]{biblatex}
\include{extended_bibliography}
\addbibresource{bibliography.bib}
% OTH specific commands for logos, colors
\usepackage{OTHR}
% line spacing
\usepackage[onehalfspacing]{setspace}
% hyperlinks
\usepackage[pdftex,colorlinks=false]{hyperref}
% make overfull hbox warnings prominently visible in document
\overfullrule=2cm
\pagestyle{headings}
% metadata like title, author, supervisor, ...
\include{metadata}
% custom commands
\include{commands}
\graphicspath{{assets/dot/}}
\setcounter{tocdepth}{2}
\begin{document}
\maketitle
\include{abstract}
\tableofcontents
\include{content}
\cleardoublepage{}
\include{appendix}
\end{document}
% vim: set filetype=tex ts=2 sw=2 tw=0 foldmethod=marker et :