masterthesis/report.tex

104 lines
1.9 KiB
TeX
Raw Normal View History

2021-02-03 10:44:28 +01:00
% 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}
2021-10-18 12:59:29 +02:00
% \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
2022-02-27 21:19:38 +01:00
\usepackage[main=english,english,ngerman]{babel}
2021-11-11 21:28:36 +01:00
% math stuff
\usepackage{amsmath}
2022-02-27 21:19:38 +01:00
\usepackage{amsfonts}
2021-11-16 16:02:08 +01:00
\usepackage{mathtools}
2021-02-03 10:44:28 +01:00
2022-02-27 21:19:38 +01:00
% timelines
\usepackage{chronology}
2021-12-07 17:41:57 +01:00
% code listings
\usepackage{minted}
2021-02-03 10:44:28 +01:00
% UTF-8 encoding
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
2021-11-11 16:45:45 +01:00
% language specific quotes and general recommendations for biblatex
2022-02-27 21:19:38 +01:00
\usepackage{lmodern,xpatch}
\usepackage[autostyle]{csquotes}
% units
\usepackage{siunitx}
\DeclareSIUnit \request{req}
2021-02-03 10:44:28 +01:00
% images
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
2021-10-18 12:59:29 +02:00
% acronyms
\usepackage{acro}
\include{acronyms}
% bibliography
2021-11-11 16:45:45 +01:00
\usepackage[datamodel=archived,backend=biber]{biblatex}
\include{extended_bibliography}
2021-10-18 12:59:29 +02:00
\addbibresource{bibliography.bib}
2021-02-03 10:44:28 +01:00
2021-10-18 12:59:29 +02:00
% OTH specific commands for logos, colors
\usepackage{OTHR}
2021-02-03 10:44:28 +01:00
2021-10-18 12:59:29 +02:00
% line spacing
\usepackage[onehalfspacing]{setspace}
2021-02-03 10:44:28 +01:00
2021-10-18 12:59:29 +02:00
% hyperlinks
\usepackage[pdftex,colorlinks=false]{hyperref}
2021-02-03 10:44:28 +01:00
2021-10-18 12:59:29 +02:00
% make overfull hbox warnings prominently visible in document
\overfullrule=2cm
2021-02-03 10:44:28 +01:00
2021-10-18 12:59:29 +02:00
\pagestyle{headings}
2021-02-03 10:44:28 +01:00
2021-10-18 12:59:29 +02:00
% metadata like title, author, supervisor, ...
\include{metadata}
% custom commands
\include{commands}
2021-02-03 10:44:28 +01:00
\graphicspath{{assets/dot/}}
2021-11-11 16:45:45 +01:00
\setcounter{tocdepth}{2}
2021-02-03 10:44:28 +01:00
\begin{document}
\maketitle
2021-10-18 12:59:29 +02:00
\include{abstract}
2021-02-03 10:44:28 +01:00
2021-10-18 12:59:29 +02:00
\tableofcontents
2021-02-03 10:44:28 +01:00
2021-10-18 12:59:29 +02:00
\include{content}
2021-02-03 10:44:28 +01:00
2021-11-11 16:45:45 +01:00
\cleardoublepage{}
2021-02-03 10:44:28 +01:00
2021-10-18 12:59:29 +02:00
\include{appendix}
2021-02-03 10:44:28 +01:00
\end{document}
2021-10-18 12:59:29 +02:00
% vim: set filetype=tex ts=2 sw=2 tw=0 foldmethod=marker et :