2020-10-03 14:56:13 +02:00
|
|
|
%! TEX program = xelatex
|
2021-04-22 15:36:26 +02:00
|
|
|
% vim: set spell spelllang=de:
|
2020-10-03 14:56:13 +02:00
|
|
|
\documentclass{scrreprt}
|
|
|
|
|
|
|
|
\KOMAoptions{
|
2021-04-22 15:36:26 +02:00
|
|
|
% layout
|
|
|
|
DIV=11,
|
|
|
|
usegeometry,
|
|
|
|
% fonts
|
|
|
|
fontsize=12pt,
|
2020-10-03 14:56:13 +02:00
|
|
|
parskip=half,
|
|
|
|
}
|
|
|
|
|
|
|
|
% hyphenation
|
|
|
|
\usepackage[ngerman]{babel}
|
|
|
|
|
|
|
|
% hyperlinks and pdf toc
|
|
|
|
\usepackage[unicode, hidelinks]{hyperref}
|
|
|
|
\usepackage{bookmark}
|
|
|
|
|
|
|
|
% cretion of nice dates from numbers
|
|
|
|
\usepackage[useregional]{datetime2}
|
|
|
|
|
|
|
|
% dummy text
|
|
|
|
\usepackage{lipsum}
|
|
|
|
|
|
|
|
% roman font for title
|
2021-04-22 15:36:26 +02:00
|
|
|
%\addtokomafont{disposition}{\rmfamily}
|
2020-10-03 14:56:13 +02:00
|
|
|
|
2021-04-22 15:36:26 +02:00
|
|
|
% line height
|
|
|
|
\usepackage{setspace}
|
|
|
|
|
|
|
|
% specified page margins
|
|
|
|
\usepackage[left=25mm, right=35mm]{geometry}
|
2020-10-03 14:56:13 +02:00
|
|
|
|
|
|
|
% bibliography
|
|
|
|
\usepackage{csquotes}
|
|
|
|
\usepackage[
|
2021-04-22 15:36:26 +02:00
|
|
|
style=geschichtsfrkl, % implements my citation requirements almost perfectly
|
2020-10-03 14:56:13 +02:00
|
|
|
]{biblatex}
|
|
|
|
\addbibresource{bibliography.bib}
|
2021-06-25 17:51:00 +02:00
|
|
|
\defbibheading{quellenheading}{\section*{Quellen}}
|
|
|
|
|
|
|
|
% unnumbered chapter shown in TOC
|
|
|
|
\newcommand{\unnumberedchapter}[1]{\chapter*{#1}\addcontentsline{toc}{chapter}{#1}}
|
2020-10-03 14:56:13 +02:00
|
|
|
|
|
|
|
\subject{Seminararbeit}
|
2021-06-25 17:49:34 +02:00
|
|
|
\title{Albert Göring}
|
|
|
|
\subtitle{Der gute Göring?}
|
2020-10-03 14:56:13 +02:00
|
|
|
\author{Simon Bruder}
|
|
|
|
\date{\DTMdisplaydate{2021}{01}{01}{-1}}
|
|
|
|
|
|
|
|
\begin{document}
|
2021-06-25 17:51:00 +02:00
|
|
|
\pagenumbering{gobble}
|
2020-10-03 14:56:13 +02:00
|
|
|
\maketitle
|
|
|
|
|
2021-04-22 15:36:26 +02:00
|
|
|
% toc
|
|
|
|
\tableofcontents
|
|
|
|
\clearpage
|
2020-10-03 14:56:13 +02:00
|
|
|
|
|
|
|
% main
|
2021-04-22 15:36:26 +02:00
|
|
|
\onehalfspacing
|
2020-10-03 14:56:13 +02:00
|
|
|
|
2021-06-25 17:51:00 +02:00
|
|
|
\pagenumbering{arabic}
|
2020-10-03 14:56:13 +02:00
|
|
|
\chapter{Einleitung}
|
|
|
|
|
|
|
|
\lipsum
|
|
|
|
|
2021-04-22 15:36:26 +02:00
|
|
|
\chapter{Hauptteil}
|
|
|
|
|
|
|
|
\section{lol}
|
|
|
|
|
|
|
|
\lipsum\cite[17]{latexcompanion}
|
|
|
|
\lipsum\cite[vgl.][43f.]{latexcompanion}
|
|
|
|
|
2020-10-03 14:56:13 +02:00
|
|
|
\section{foo}
|
2021-04-22 15:36:26 +02:00
|
|
|
|
|
|
|
\lipsum
|
|
|
|
|
|
|
|
\chapter{Schluss}
|
|
|
|
|
|
|
|
\lipsum
|
|
|
|
|
|
|
|
% appendix
|
|
|
|
\appendix
|
|
|
|
\singlespacing
|
2020-10-03 14:56:13 +02:00
|
|
|
|
|
|
|
% bibliography
|
2021-06-25 17:51:00 +02:00
|
|
|
\unnumberedchapter{Quellen- und Literaturverzeichnis}
|
|
|
|
\nocite{*} % FIXME: remove once I actually cite something
|
|
|
|
\printbibliography[keyword=Quelle, heading=quellenheading]
|
|
|
|
\printbibliography[notkeyword=Quelle, heading=subbibliography]
|
2020-10-03 14:56:13 +02:00
|
|
|
|
2021-04-22 15:36:26 +02:00
|
|
|
\chapter*{Eigenständigkeitserklärung}
|
|
|
|
|
|
|
|
\lipsum
|
|
|
|
|
2020-10-03 14:56:13 +02:00
|
|
|
\end{document}
|