Compare commits
2 Commits
5b3a0aefbb
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 3ac93bf787 | |||
| 75dfa73e6d |
@@ -1,4 +1,4 @@
|
|||||||
\section{Anhang A: Zusätzliche Materialien}
|
\section{Zusätzliche Materialien}
|
||||||
\label{app:materialien}
|
\label{app:materialien}
|
||||||
|
|
||||||
Hier können zusätzliche Tabellen, Abbildungen oder Berechnungen eingefügt werden.
|
Hier können zusätzliche Tabellen, Abbildungen oder Berechnungen eingefügt werden.
|
||||||
|
|||||||
Binary file not shown.
+61
-43
@@ -1,7 +1,7 @@
|
|||||||
\documentclass[12pt, a4paper, ngerman]{scrartcl}
|
\documentclass[12pt, a4paper, ngerman, listof=totoc, bibliography=totoc]{scrartcl}
|
||||||
\usepackage{babel}
|
\usepackage{babel}
|
||||||
\usepackage[autostyle=true]{csquotes}
|
\usepackage[autostyle=true]{csquotes}
|
||||||
\usepackage[left=3cm, right=4cm, top=2.5cm, bottom=2.5cm]{geometry}
|
\usepackage[left=21mm, right=35mm, top=30mm, bottom=20mm]{geometry}
|
||||||
\usepackage{setspace}
|
\usepackage{setspace}
|
||||||
\onehalfspacing
|
\onehalfspacing
|
||||||
\usepackage[hidelinks]{hyperref}
|
\usepackage[hidelinks]{hyperref}
|
||||||
@@ -10,11 +10,22 @@
|
|||||||
\usepackage{booktabs}
|
\usepackage{booktabs}
|
||||||
\usepackage{amssymb}
|
\usepackage{amssymb}
|
||||||
\usepackage{graphicx}
|
\usepackage{graphicx}
|
||||||
\usepackage{caption}
|
\usepackage[font=footnotesize]{caption}
|
||||||
\usepackage{enumitem}
|
\usepackage{enumitem}
|
||||||
\usepackage{array}
|
\usepackage{array}
|
||||||
\usepackage{pdfpages}
|
\usepackage{pdfpages}
|
||||||
\usepackage{tocbibind}
|
\usepackage{fontspec}
|
||||||
|
\setmainfont{Times New Roman}
|
||||||
|
\addtokomafont{section}{\rmfamily}
|
||||||
|
\addtokomafont{subsection}{\rmfamily}
|
||||||
|
\addtokomafont{subsubsection}{\rmfamily}
|
||||||
|
\addtokomafont{paragraph}{\rmfamily}
|
||||||
|
\usepackage{scrlayer-scrpage}
|
||||||
|
\clearpairofpagestyles
|
||||||
|
\ohead{\pagemark}
|
||||||
|
\setkomafont{footnote}{\footnotesize}
|
||||||
|
\renewcommand{\figurename}{Abb.}
|
||||||
|
\renewcommand{\tablename}{Tab.}
|
||||||
|
|
||||||
% Bibliography file
|
% Bibliography file
|
||||||
\addbibresource{bib/literatur.bib}
|
\addbibresource{bib/literatur.bib}
|
||||||
@@ -37,17 +48,58 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
% No page numbers for front matter
|
% No page numbers for deckblatt
|
||||||
\pagenumbering{gobble}
|
\pagenumbering{gobble}
|
||||||
|
|
||||||
% 1. Deckblatt (import ready-to-use PDF)
|
% 1. Deckblatt (import ready-to-use PDF)
|
||||||
\includepdf[pages=1]{chapters/00_deckblatt.pdf}
|
\includepdf[pages=1]{chapters/00_deckblatt.pdf}
|
||||||
\thispagestyle{empty}
|
|
||||||
\clearpage
|
\clearpage
|
||||||
|
|
||||||
% 2. Ehrenwortliche Erklarung (EXACT text from Erklarung Hausarbeit.docx)
|
% 2. Verzeichnisse with roman numerals
|
||||||
|
\pagenumbering{roman}
|
||||||
|
\setcounter{page}{1}
|
||||||
|
|
||||||
|
\tableofcontents
|
||||||
\newpage
|
\newpage
|
||||||
\thispagestyle{empty}
|
|
||||||
|
\section*{Abkurzungsverzeichnis}
|
||||||
|
\addcontentsline{toc}{section}{Abkurzungsverzeichnis}
|
||||||
|
\begin{acronym}[HWR]
|
||||||
|
\acro{KI}{Kunstliche Intelligenz}
|
||||||
|
\acro{HWR}{Hochschule fur Wirtschaft und Recht Berlin}
|
||||||
|
\end{acronym}
|
||||||
|
\newpage
|
||||||
|
|
||||||
|
% wenn mehr als 5
|
||||||
|
\listoffigures
|
||||||
|
\newpage
|
||||||
|
|
||||||
|
% wenn mehr als 5
|
||||||
|
\listoftables
|
||||||
|
\newpage
|
||||||
|
|
||||||
|
% 3. Main text with arabic numerals starting at 1
|
||||||
|
\pagenumbering{arabic}
|
||||||
|
\setcounter{page}{1}
|
||||||
|
|
||||||
|
\inputchapter{01_einleitung.tex}
|
||||||
|
\inputchapter{02_hauptteil.tex}
|
||||||
|
\inputchapter{03_schlussfolgerung.tex}
|
||||||
|
|
||||||
|
\newpage
|
||||||
|
|
||||||
|
% 4. Literaturverzeichnis
|
||||||
|
\printbibliography[heading=bibintoc, title=Literaturverzeichnis]
|
||||||
|
|
||||||
|
\newpage
|
||||||
|
|
||||||
|
% 5. Appendix (optional)
|
||||||
|
\appendix
|
||||||
|
\inputchapter{99_anhang.tex}
|
||||||
|
|
||||||
|
\newpage
|
||||||
|
|
||||||
|
% 6. Ehrenwortliche Erklarung (EXACT text from Erklarung Hausarbeit.docx)
|
||||||
{\Large\bfseries Erklarung\par}
|
{\Large\bfseries Erklarung\par}
|
||||||
\vspace{1em}
|
\vspace{1em}
|
||||||
|
|
||||||
@@ -68,37 +120,7 @@ Unterschrift des Kandidaten/der Kandidatin
|
|||||||
|
|
||||||
\newpage
|
\newpage
|
||||||
|
|
||||||
% 3. Verzeichnisse with roman numerals
|
% 7. Mandatory KI directory (Richtlinien 3.8)
|
||||||
\pagenumbering{roman}
|
|
||||||
\setcounter{page}{1}
|
|
||||||
|
|
||||||
\tableofcontents
|
|
||||||
\listoffigures
|
|
||||||
\listoftables
|
|
||||||
|
|
||||||
\section*{Abkurzungsverzeichnis}
|
|
||||||
\addcontentsline{toc}{section}{Abkurzungsverzeichnis}
|
|
||||||
\begin{acronym}[BWL]
|
|
||||||
\acro{BWL}{Betriebswirtschaftslehre}
|
|
||||||
\acro{KI}{Kunstliche Intelligenz}
|
|
||||||
\acro{HWR}{Hochschule fur Wirtschaft und Recht Berlin}
|
|
||||||
\end{acronym}
|
|
||||||
\newpage
|
|
||||||
|
|
||||||
% 4. Main text with arabic numerals starting at 1
|
|
||||||
\pagenumbering{arabic}
|
|
||||||
\setcounter{page}{1}
|
|
||||||
|
|
||||||
\inputchapter{01_einleitung.tex}
|
|
||||||
\inputchapter{02_hauptteil.tex}
|
|
||||||
\inputchapter{03_schlussfolgerung.tex}
|
|
||||||
|
|
||||||
\newpage
|
|
||||||
|
|
||||||
% 5. Literaturverzeichnis
|
|
||||||
\printbibliography[heading=bibintoc, title=Literaturverzeichnis]
|
|
||||||
|
|
||||||
% 6. Mandatory KI directory (Richtlinien 3.8)
|
|
||||||
\section*{KI-Verzeichnis}
|
\section*{KI-Verzeichnis}
|
||||||
\addcontentsline{toc}{section}{KI-Verzeichnis}
|
\addcontentsline{toc}{section}{KI-Verzeichnis}
|
||||||
\label{sec:ki-verzeichnis}
|
\label{sec:ki-verzeichnis}
|
||||||
@@ -116,8 +138,4 @@ Alle verwendeten KI-Systeme sind mit Zweck und Zeitraum der Nutzung aufzufuhren:
|
|||||||
\end{tabular}
|
\end{tabular}
|
||||||
\end{table}
|
\end{table}
|
||||||
|
|
||||||
% 7. Appendix (optional)
|
|
||||||
\appendix
|
|
||||||
\inputchapter{99_anhang.tex}
|
|
||||||
|
|
||||||
\end{document}
|
\end{document}
|
||||||
|
|||||||
Reference in New Issue
Block a user