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,
|
2021-04-22 15:36:26 +02:00
|
|
|
% structure
|
|
|
|
bibliography=totoc, % add bibliography to toc
|
2020-10-03 14:56:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
% 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}
|
|
|
|
|
|
|
|
\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}
|
|
|
|
\maketitle
|
|
|
|
|
2021-04-22 15:36:26 +02:00
|
|
|
% toc
|
|
|
|
\phantomsection
|
|
|
|
|
|
|
|
% no page numbers on toc pages
|
|
|
|
\pagestyle{empty}
|
|
|
|
\renewcommand*{\chapterpagestyle}{empty}
|
|
|
|
\tableofcontents
|
|
|
|
\clearpage
|
|
|
|
\pagestyle{plain}
|
|
|
|
\renewcommand*{\chapterpagestyle}{plain}
|
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
|
|
|
|
|
|
|
\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
|
|
|
|
\printbibliography
|
|
|
|
|
2021-04-22 15:36:26 +02:00
|
|
|
\chapter*{Eigenständigkeitserklärung}
|
|
|
|
\addcontentsline{toc}{chapter}{Eigenständigkeitserklärung}
|
|
|
|
|
|
|
|
\lipsum
|
|
|
|
|
2020-10-03 14:56:13 +02:00
|
|
|
\end{document}
|