masterthesis/report.tex
2021-10-18 12:59:29 +02:00

80 lines
1.4 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[english]{babel}
% UTF-8 encoding
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
% acronyms
\usepackage{acro}
\include{acronyms}
% language specific quotes
\usepackage{csquotes}
% bibliography
\usepackage[backend=biber]{biblatex}
\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}
\begin{document}
\maketitle
\include{abstract}
\tableofcontents
\include{content}
\cleardoublepage
\include{appendix}
\end{document}
% vim: set filetype=tex ts=2 sw=2 tw=0 et :