Bachelor Arbeit Vorlage

\documentclass{scrreport}

% force UTF-8 encoding even on legacy systems.
\usepackage[utf8]{inputenc}
% support accents 
\usepackage[T1]{fontenc}
% new german language support. 
\usepackage[ngerman]{babel} 
% support enumerate environment
\usepackage{enumerate}
% make refs clickable
\usepackage{hyperref}

% useful macros for math typesetting. Extends amsmath
\usepackage{mathtools}
% maths font support (\mathbb and \mathcal etc)
\usepackage{amssymb}
% theorem typesetting
\usepackage{amsthm}

% Language sensitive quoting
\usepackage{csquotes}

% more sophisticated bibliography support 
\usepackage[citestyle=alphabetic,bibstyle=authortitle]{biblatex}
\addbibresource{pfad/zur/biblatex/datei.bib}
% Commands to change bibliography style
\usepackage{phaistos}

% Use this package to be able to create other tex files for example
% for individual chapters and include them in the main document.
% Usage: \subfile{path/to/subfile}
\usepackage{subfiles}

\newcommand{\RR}{\mathbb{R}}
\newcommand{\QQ}{\mathbb{Q}}
\newcommand{\ZZ}{\mathbb{Z}}
\newcommand{\NN}{\mathbb{N}}
\newcommand{\CC}{\mathbb{C}}
\newcommand{\KK}{\mathbb{K}}

\newcommand{\set}[1]{\ensuremath{\left\{#1\right\}}}
\newcommand{\abs}[1]{\ensuremath{\left\lvert#1\right\rvert}}
\newcommand{\norm}[1]{\ensuremath{\left\lVert#1\right\rVert}}

\DeclareMathOperator{\id}{id}

% bold title italicized body
\theoremstyle{plain}
\newtheorem{theorem}{Satz}[chapter]
\theoremstyle{plain}
\newtheorem{corollary}[theorem]{Korollar}
\theoremstyle{plain}
\newtheorem{lemma}[theorem]{Lemma}
\theoremstyle{plain}
\newtheorem{proposition}[theorem]{Proposition}

% bold title, roman body
\theoremstyle{definition}
\newtheorem{example}[theorem]{Beispiel}
\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}

% italicized title, roman body
\theoremstyle{remark}
% dont number remarks
\newtheorem*{remark}{Bemerkung}


\subject{Bachelor Arbeit}
\title{Titel der Bachelor Arbeit}
\subtitle{Untertitel}
\author{Your Name}
\date{\today}
\publishers{Universität Bremen}

\begin{document}

\maketitle
\begin{abstract}
    % HIER ABSTRACT HIN
\end{abstract}

\tableofcontents
\pagebreak

\chapter{Einleitung}
    % EINLEITUNG

\chapter{Kapitel}
% KAPITEL EINLEITUNG
\begin{definition}
    % BEISPIEL DEFINITION
\end{definition}

\begin{theorem}
    % BEISPIEL SATZ
\end{theorem}
\begin{proof}
    % BEISPIEL BEWEIS
\end{proof}

\begin{corollary}
    % BEISPIEL KOROLLAR
\end{corollary}

\section{Noch eine Überschrift}

\section{Zusammenfassung}

\pagebreak
\printbibliography

\end{document}