Ein Latex Template für Seminararbeiten und andere Abgaben https://git.schneider-hosting.de/schneider/latex-template
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.8 KiB

\documentclass[ngerman,a4paper,12pt,parskip=full,bibliography=totoc,listof=totoc]{scrartcl}
% Template von Schneider, Quelle: https://git.schneider-hosting.de/schneider/latex-template
\usepackage{titlepage}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage[T1]{fontenc}
\usepackage{fontspec}
\usepackage{booktabs}
\usepackage{siunitx}
\usepackage[toc,page]{appendix}
\usepackage{pdflscape}
\usepackage[unicode,pdfusetitle]{hyperref}
\usepackage{polyglossia}
\usepackage[left=2.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm]{geometry}
\usepackage[style=authoryear,citestyle=authoryear-ibid,backend=biber,autopunct=true,dashed=false]{biblatex}
\usepackage{minted}
\usepackage{csquotes}
\usepackage[acronym,automake=immediate,toc]{glossaries}
\usepackage{wrapfig}
\usepackage{FiraMono}
\usepackage{sourcesanspro}
\usepackage[default,regular,black]{sourceserifpro}
\usepackage{booktabs}
\input{glossary.tex}
\addbibresource{quellen.bib}
\setdefaultlanguage[spelling = new]{german}
\renewcommand{\appendixname}{Anhang}
\renewcommand{\appendixtocname}{\appendixname}
\renewcommand{\appendixpagename}{\appendixname}
\sisetup{detect-all,locale=DE}
\begin{document}
\TitlePageStyle{JT-Typography}
\maketitle[%
% There are only four official elements:
author={Marcel Schneider},%
title={Eine \LaTeX-Vorlage für Arbeiten und Abgaben},
subtitle={Mit Untertitel},
publisher={Hier kann die Uni oder das Seminar stehen},
place={Göttingen},
date={\today}
% Nevertheless, you may use extratitle, lowertitleback and uppertitleback.
% See Markus-2 for more information about those.
]
\pagenumbering{roman}
\tableofcontents
\clearpage
\listoffigures
\listoftables
%\printglossary[type=\acronymtype]
\printglossaries
\clearpage
\setcounter{page}{1}
\pagenumbering{arabic}
\input{einleitung.tex}
\input{hauptteil.tex}
\input{fazit.tex}
\newpage
\printbibliography{}
\input{appendix.tex}
\end{document}