diff --git a/Logo_HBRS_74mm_Pfade.pdf b/Logo_HBRS_74mm_Pfade.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1a0b7f0edad01a5f1e1f0b899d5fdb23c4ad1140
Binary files /dev/null and b/Logo_HBRS_74mm_Pfade.pdf differ
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..0655b940971b8288b8f32c39f451b62cd9781146
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,68 @@
+############################################################
+#
+# Makefile für Abschlussarbeit
+#
+# Mögliche Aufrufe:
+#  - make        : erzeugen der gesamten Arbeit als pdf
+#  - make clean  : löschen fast aller Dateien im Verzeichnis
+#
+# Mögliche/nötige Anpassungen gekennzeichnit mit ???
+#
+############################################################
+
+# ??? Name des LaTeX-Datei mit Endung .tex (ggfs. anpassen)
+NAME	= thesis_english
+
+# Überschreiben Default-Regel für .tex Endungen
+%.dvi: %.tex
+
+# Regel, um aus .bib eine .bbl zu machen
+%.bbl: %.bib
+	bibtex $*
+
+# Verhindert das Löschen von Zwischendateien nach make
+.SECONDARY: $(NAME).bbl $(NAME).dvi
+
+.PHONY: default clean
+
+
+############################################################
+#
+# ??? LaTeX kennt entweder LaTeX+dvips oder pdflatex
+# Unterschiede selber rausfinden (z.B.- unterstützte Grafikformate)
+# Eine Version davon muss man sich aussuchen.
+#
+############################################################
+
+# Version 1 (LaTeX + dvips; hier auskommentiert)
+#TEX	= latex
+#DVIPDF	= dvipdf
+# aus tex-Datei pdf-datei generieren inkl. aktuellem Literaturverzeichnis
+#%.pdf: %.tex
+#	$(TEX) $*
+#	-bibtex $*
+#	$(TEX) $*
+#	$(TEX) $*
+#	$(DVIPDF) $*
+
+# Version 2 (pdflatex; derzeit auskommentiert)
+TEX	= pdflatex
+# aus tex-Datei pdf-datei generieren
+%.pdf: %.tex
+	$(TEX) $*
+	-bibtex $*
+	$(TEX) $*
+	$(TEX) $*
+
+############################################################
+# das sind die möglich Ansprungziele beim Aufruf
+
+default:: $(NAME).pdf
+
+clean::
+	-rm -f $(NAME).pdf $(NAME).aux $(NAME).toc $(NAME).dvi $(NAME).ind $(NAME).ilg \
+        $(NAME).cb $(NAME).cb2 $(NAME).idx $(NAME).log $(NAME).bbl $(NAME).blg \
+        $(NAME).out $(NAME).lof $(NAME).lot $(NAME).nav $(NAME).snm $(NAME).vrb
+############################################################
+
+
diff --git a/README.md b/README.md
index 3092e85d79e0a0568a5ff048af876c69cfb44e55..9db283e1e3a30420b523089f08b95f10eef629c0 100644
--- a/README.md
+++ b/README.md
@@ -1,92 +1,24 @@
 # hbrs-thesis-template
 
+Latex template for theses (bachelor, master or PhD) at the University of Applied Sciences Bonn-Rhein-Sieg.
 
+Currently, the template is for the Department of Computer Science, but can easily be modified for use in other departments.
 
-## Getting started
+Students should consult their primary examiner for how the thesis should specifically be formatted.
 
-To make it easy for you to get started with GitLab, here's a list of recommended next steps.
+Note that if your thesis is with a company that has protected intellectual property, you must include a "Sperrvermerk" (blocking or barring notice) on the thesis.
 
-Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
+If you have a compnay logo that you want to include, then uncomment the following line and adjust the height/width accordingly:
+\includegraphics[height=1.2cm]{second_logo.pdf}
 
-## Add your files
+If you are using Linux, the included Makefile will easily compile the Latex document. You must change the line that specifies which version (German or English) you are compiling (i.e. "NAME = thesis_english"). Then use the following two commands: `make clean` and `make`.
 
-- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
-- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
+The original template and Makefile were created by Dr. Rudolf Berrendorf (http://berrendorf.inf.h-brs.de/index_e.html), Additoinal ideas concerning the class was drawn from the previous templates designed by Argentina Ortega Sainz and Ronni Hartanto.
 
-```
-cd existing_repo
-git remote add origin https://git.fslab.de/kkirsc2m/hbrs-thesis-template.git
-git branch -M main
-git push -uf origin main
-```
+Karl N. Kirschner, PhD
+Department of Computer Science
+University of Applied Sciences Bonn-Rhein-Sieg
+Grantham-Allee 20
+53757 Sankt Augustin, Germany
+https://www.h-brs.de/en
 
-## Integrate with your tools
-
-- [ ] [Set up project integrations](https://git.fslab.de/kkirsc2m/hbrs-thesis-template/-/settings/integrations)
-
-## Collaborate with your team
-
-- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
-- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
-- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
-- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
-- [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
-
-## Test and Deploy
-
-Use the built-in continuous integration in GitLab.
-
-- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
-- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
-- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
-- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
-- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
-
-***
-
-# Editing this README
-
-When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template.
-
-## Suggestions for a good README
-Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
-
-## Name
-Choose a self-explaining name for your project.
-
-## Description
-Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
-
-## Badges
-On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
-
-## Visuals
-Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
-
-## Installation
-Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
-
-## Usage
-Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
-
-## Support
-Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
-
-## Roadmap
-If you have ideas for releases in the future, it is a good idea to list them in the README.
-
-## Contributing
-State if you are open to contributions and what your requirements are for accepting them.
-
-For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
-
-You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
-
-## Authors and acknowledgment
-Show your appreciation to those who have contributed to the project.
-
-## License
-For open source projects, say how it is licensed.
-
-## Project status
-If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
diff --git a/fhlogo.png b/fhlogo.png
new file mode 100644
index 0000000000000000000000000000000000000000..78df42ace5e57eb67ef27a8018dd22adc4fe9165
Binary files /dev/null and b/fhlogo.png differ
diff --git a/hbrs_thesis_english.cls b/hbrs_thesis_english.cls
new file mode 100644
index 0000000000000000000000000000000000000000..f78724d5abf263a0666c8c473b359288bdea49ed
--- /dev/null
+++ b/hbrs_thesis_english.cls
@@ -0,0 +1,156 @@
+%
+% Author: Karl N. Kirschner, Hochschule Bonn-Rhein-Sieg, Germany
+% Repo: https://git.fslab.de/kkirsc2m/hbrs-documents-latex
+% Based on the previous templates Argentina Ortega Sainz and Ronni Hartanto
+%
+
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesClass{hbrs_thesis_english}[2022/10/18 H-BRS English CS Thesis]
+\LoadClass[a4paper]{book}
+\usepackage[utf8]{inputenc}
+
+\usepackage{geometry}
+
+\usepackage{mathptmx} %% Changes the document font - mathptmx provides Times font (defualt)
+\usepackage{amsmath}
+%\usepackage{amssymb}
+%\usepackage{theorem}
+\usepackage{xfrac}	 %% alternative fraction notation
+
+%% Floats
+%\usepackage{float} %% better float management
+\usepackage{graphicx}
+\usepackage{subfig}
+%\usepackage{subcaption}
+\usepackage{booktabs}
+\usepackage{threeparttable}
+\usepackage[labelfont=bf, labelsep=period, belowskip=6pt, aboveskip=1pt]{caption}
+
+% \usepackage[sort&compress]{natbib}         %% Harvard style citations
+\usepackage[sort&compress, numbers]{natbib}  %% Vancouver style citations
+\setcitestyle{square}                        %% Square [] or round ()
+
+\usepackage[hyphens]{url}
+\usepackage[hidelinks]{hyperref}
+\usepackage{ifthen}
+\usepackage{siunitx}                         %% Units (e.g. \si{kg.m.s^{-1}}), \num{.3e45})
+\usepackage{xcolor}
+
+\usepackage{titlesec}
+
+\renewcommand{\sectionmark}[1]{ \markright{#1}{} }
+
+\usepackage{fancyhdr}
+%% Control how most of the pages looks
+\fancyhf{}
+\renewcommand\chaptermark[1]{\markboth{Chapter \thechapter: #1}{}} 
+\renewcommand\sectionmark[1]{\markright{Section \thesection:\ #1}}
+
+%% Control how the page of chapters looks
+\fancypagestyle{plain}{%
+    \renewcommand*\headrulewidth{0pt}
+    \renewcommand*\footrulewidth{0pt}
+%    \fancyhead[C]{\@title}
+	\fancyfoot[C]{\thepage}
+	\fancyfoot[L]{\@author}
+	\fancyfoot[R]{\@degree}
+}
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Colors according the the H-BRS corporate idenity
+\definecolor{HBRS}{RGB}{0,157,224}
+\definecolor{grey}{RGB}{105,105,105}
+\definecolor{silver}{cmyk}{0.4,0.27,0.27,0}
+\definecolor{gold}{RGB}{255, 127, 0}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\newcommand*{\thesistype}[1]{\gdef\@thesistype{#1}}
+\newcommand*{\degree}[1]{\gdef\@degree{#1}}
+\newcommand*{\supervisorfirst}[1]{\gdef\@supervisorfirst{#1}}
+\newcommand*{\supervisorsecond}[1]{\gdef\@supervisorsecond{#1}}
+\newcommand*{\supervisorthird}[1]{\gdef\@supervisorthird{#1}}
+
+\newcommand{\thirdpartylogo}[1]{\def\@thirdpartylogo{#1}}
+
+\newcommand*{\@thesistype}{\textcolor{red}{None}}
+\newcommand*{\@degree}{\textcolor{red}{None}}
+\newcommand*{\@supervisorfirst}{\textcolor{red}{None}}
+\newcommand*{\@supervisorsecond}{\textcolor{red}{None}}
+\newcommand*{\@supervisorthird}{}
+\newcommand*{\@thirdpartylogo}{}
+
+\ProcessOptions\relax
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Page Geometry
+
+%% Vertical
+\setlength{\voffset}{-0.5cm}
+\setlength{\textheight}{23cm}
+\setlength{\topmargin}{0cm}
+\setlength{\headheight}{6mm}
+\setlength{\headsep}{1cm}
+\setlength{\topskip}{0cm}
+\setlength{\footskip}{1cm}
+
+%% Horizontal
+\setlength{\hoffset}{-0.4cm}
+\setlength{\textwidth}{15.5cm}
+\setlength{\oddsidemargin}{0.8cm}
+\setlength{\evensidemargin}{0.8cm}
+
+\setlength{\parindent}{15pt} %% Paragraph indentation
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Maketitle
+
+\renewcommand*{\maketitle}{%
+\begin{titlepage}
+\newgeometry{left=3cm, bottom=3cm}
+
+\begin{minipage}{0.475\textwidth}
+    \centering
+	\includegraphics[height=1.3cm]{Logo_HBRS_74mm_Pfade.pdf}
+\end{minipage}
+%\begin{minipage}{0.475\textwidth}
+%    \centering
+%    \includegraphics[height=1.3cm]{Logo_HBRS_74mm_Pfade.pdf}
+%\end{minipage}
+\ifx\@thirdpartylogo\@empty
+  \relax
+\else
+\centering
+\vfill
+\begin{minipage}{0.4\textwidth}
+    \centering
+    \includegraphics[height=1.3cm]{\@thirdpartylogo}
+\end{minipage}
+
+\fi%
+
+\vfill
+\centering
+{\Huge\bfseries\@thesistype\unskip\strut\par}
+\vspace{0.8cm}
+{\Large\@degree\unskip\strut\par}
+\vspace{1.5cm}
+{\huge\bfseries\@title\unskip\strut\par}
+\vspace{2cm}
+{\Large\bfseries\itshape\@author\unskip\strut\par}
+
+\vfill
+{\large
+\textbf{
+    \begin{tabular}{ll}
+        First Supervisor:  & \@supervisorfirst \\
+        Second Supervisor: & \@supervisorsecond \\
+        Third Supervisor:  & \@supervisorthird
+    \end{tabular}
+}}
+
+\vfill
+{\large Submitted on: \@date}
+\end{titlepage}
+\restoregeometry
+}
+
+\endinput
\ No newline at end of file
diff --git a/literatur.bib b/literatur.bib
new file mode 100644
index 0000000000000000000000000000000000000000..718526e2e749b796c9b1a9ec16e5296cb5b8950d
--- /dev/null
+++ b/literatur.bib
@@ -0,0 +1,190 @@
+% Encoding: ISO-8859-1
+
+
+@Book{Becker2008,
+  Title                    = {Tricks of the trade: How to think about your research while you're doing it},
+  Author                   = {Becker, Howard S},
+  Publisher                = {University of Chicago Press},
+  Year                     = {2008},
+
+  Address                  = {Chicago, IL, USA}
+}
+
+@Article{BlischakDW2016,
+  Title                    = {A Quick Introduction to Version Control with Git and GitHub},
+  Author                   = {Blischak, John D. AND Davenport, Emily R. AND Wilson, Greg},
+  Journal                  = {{PLOS} Computational Biology},
+  Year                     = {2016},
+
+  Month                    = {01},
+  Number                   = {1},
+  Pages                    = {1-18},
+  Volume                   = {12},
+
+  Doi                      = {10.1371/journal.pcbi.1004668},
+  Publisher                = {Public Library of Science},
+  Url                      = {https://doi.org/10.1371/journal.pcbi.1004668}
+}
+
+@InCollection{EasterbrookSSD2008,
+  Title                    = {Selecting Empirical Methods for Software Engineering Research},
+  Author                   = {Easterbrook, Steve and Singer, Janice and Storey, Margaret-Anne and Damian, Daniela},
+  Booktitle                = {Guide to Advanced Empirical Software Engineering},
+  Publisher                = {Springer London},
+  Year                     = {2008},
+
+  Address                  = {London},
+  Editor                   = {Shull, Forrest and Singer, Janice and Sj{\o}berg, Dag I. K.},
+  Pages                    = {285--311},
+
+  Doi                      = {{10.1007/978-1-84800-044-5\_11}}
+}
+
+@Article{Giddings2008,
+  Title                    = {On the Process of Becoming a Great Scientist},
+  Author                   = {Giddings, Morgan C},
+  Journal                  = {{PLOS} Computational Biology},
+  Year                     = {2008},
+
+  Month                    = {02},
+  Number                   = {2},
+  Pages                    = {1--3},
+  Volume                   = {4},
+
+  Doi                      = {10.1371/journal.pcbi.0040033}
+}
+
+@Misc{Jones2013,
+  Author                   = {Jones, John},
+  Note                     = {Personal communication on 31-10-2013.},
+  Year                     = {2013},
+
+  Abstract                 = {The conversation covered topics his idea of how to do X.}
+}
+
+@Misc{Jones2013b,
+  Author                   = {Jones, John},
+  Note                     = {Personal communication on 01-12-2013.},
+  Year                     = {2013},
+
+  Abstract                 = {The conversation covered topics his new idea Z.}
+}
+
+@InProceedings{MilaniSRCL2009,
+  Title                    = {Research Experiences for Undergraduates: Autonomic Computing Research at {FIU}},
+  Author                   = {Milani, Masoud and Sadjadi, S. Masoud and Rangaswami, Raju and Clarke, Peter J. and Li, Tao},
+  Booktitle                = {The Fifth {R}ichard {T}apia Celebration of Diversity in Computing Conference: Intellect, Initiatives, Insight, and Innovations},
+  Year                     = {2009},
+
+  Address                  = {New York, NY, USA},
+  Pages                    = {93--97},
+  Publisher                = {ACM},
+  Series                   = {TAPIA '09},
+
+  Acmid                    = {1565821},
+  Doi                      = {10.1145/1565799.1565821},
+  ISBN                     = {978-1-60558-217-7},
+  Keywords                 = {REU site, autonomic computing, research experiences for undergraduates, underrepresented students},
+  Location                 = {Portland, Oregon},
+  Numpages                 = {5}
+}
+
+@Article{OConnorH2009,
+  Title                    = {Algorithm for writing a scientific manuscript},
+  Author                   = {O'Connor, Timothy R. and Holmquist, Gerald P.},
+  Journal                  = {Biochemistry and Molecular Biology Education},
+  Year                     = {2009},
+  Number                   = {6},
+  Pages                    = {344--348},
+  Volume                   = {37},
+
+  Doi                      = {10.1002/bmb.20329},
+  ISSN                     = {1539-3429},
+  Keywords                 = {Manuscript preparation, Writing, Non-native English writers},
+  Publisher                = {Wiley Subscription Services, Inc., A Wiley Company}
+}
+
+@Manual{R-base,
+  Title                    = {{R}: A Language and Environment for Statistical Computing},
+
+  Address                  = {Vienna, Austria},
+  Author                   = {{R Core Team}},
+  Organization             = {R Foundation for Statistical Computing},
+  Year                     = {2016},
+
+  Url                      = {https://www.R-project.org}
+}
+
+@MastersThesis{Smith2016,
+  Title                    = {Optimizing a Thesis Project},
+  Author                   = {Jane Smith},
+  School                   = {Bonn-Rhein-Sieg University of Applied Sciences},
+  Year                     = {2016},
+
+  Address                  = {Grantham-Allee 20, 53757 Sankt Augustin, Germany}
+}
+
+@Misc{Wikipedia-OganizationalEthics2017,
+  Title                    = {Organizational ethics --- {W}ikipedia{,} The Free Encyclopedia},
+
+  Author                   = {{Wikipedia Contributors}},
+  Note                     = {[Online; accessed 08-01-2018]},
+  Year                     = {2017},
+
+  Url                      = {https://en.wikipedia.org/wiki/Organizational\_ethics}
+}
+
+@Misc{sublime,
+  Title                    = {{Sublime Text}},
+  Note                     = {[Online; accessed: 19-08-2017]},
+  Year                     = {2017},
+
+  Url                      = {https://www.sublimetext.com}
+}
+
+@Misc{Goel2012,
+  author       = {Sanjay Goel},
+  title        = {{Research Method for Engineering Research Students -- Part II: A Checklist for Reflective Self-assessment of the Research Work}},
+  howpublished = {\url{https://goelsan.wordpress.com/2012/04/15/research-method-for-engineering-research-students-part-II-a-checklist-for-reflective-self-assessment-of-the-research-work/}},
+  month        = {April 15},
+  year         = {2012},
+  note         = {Accessed: 2022-10-21},
+  url          = {https://goelsan.wordpress.com/2012/04/15/research-method-for-engineering-research-students-part-II-a-checklist-for-reflective-self-assessment-of-the-research-work},
+}
+
+@Book{CargillO2013,
+  title     = {Writing scientific research articles: Strategy and steps},
+  publisher = {John Wiley \& Sons},
+  year      = {2013},
+  author    = {Cargill, Margaret and O'Connor, Patrick},
+}
+
+@Article{Zhang2014,
+  author    = {Zhang, Weixiong},
+  title     = {Ten Simple Rules for Writing Research Papers},
+  journal   = {PLOS Computational Biology},
+  year      = {2014},
+  volume    = {10},
+  number    = {1},
+  pages     = {1-3},
+  month     = {01},
+  doi       = {10.1371/journal.pcbi.1003453},
+  keywords  = {rank4},
+  publisher = {Public Library of Science},
+  url       = {https://doi.org/10.1371/journal.pcbi.1003453},
+}
+
+@Article{Hyland1994,
+  author  = {Ken Hyland},
+  title   = {Hedging in academic writing and {EAF} textbooks},
+  journal = {English for Specific Purposes},
+  year    = {1994},
+  volume  = {13},
+  number  = {3},
+  pages   = {239 - 256},
+  issn    = {0889-4906},
+  doi     = {https://doi.org/10.1016/0889-4906(94)90004-3},
+  url     = {http://www.sciencedirect.com/science/article/pii/0889490694900043},
+}
+
+@Comment{jabref-meta: databaseType:bibtex;}
diff --git a/thesis_deutsch.tex b/thesis_deutsch.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2a1e00c9f87694274b841bdea4a9a468bc7cb18e
--- /dev/null
+++ b/thesis_deutsch.tex
@@ -0,0 +1,430 @@
+\NeedsTeXFormat{LaTeX2e}       %% latest stable release of LaTeX
+
+\documentclass[a4paper]{book}
+
+%% Allow for German character input from keyboard
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc}
+
+\usepackage{mathptmx} %% Change the document font - mathptmx provides Times font (defualt)
+
+%% German-specific headers, content (e.g. date) and commands (e.g. hypenation)
+\usepackage[ngerman]{babel}
+
+%% Need to also deal with the bibliography (e.g. "und" within author list; "Seiten")
+%% options: babplain, babplain-fl, babalpha, babalpha-fl, babunsrt, babunsrt-fl, bababbrv and bababbrv-fl.
+%%    The -fl means to use the first, last name style of author listing (after the first author)
+\usepackage[fixlanguage]{babelbib}
+\selectbiblanguage{ngerman}
+
+\usepackage{amsmath}
+\usepackage{xfrac}	%% alternative fraction notation using \sfac
+
+%\usepackage{float} %% better float management
+
+%% Figures
+\usepackage{graphicx}          %% Grafiken einbinden (hängt von latex/dvipdf oder pdflatex ab!) || For figures
+\usepackage{subfig}            %% Teilgrafiken erlauben || Allows subfigures within one parent figure
+
+%% Tables
+\usepackage{booktabs, threeparttable}                %% table with footnotes and lines (see Table 2)
+\usepackage[labelfont=bf, labelsep=period]{caption}  %% captions with boldface ``Figure #.'' and ``Table #.'' with period as label seperator
+
+%% Scientific units
+\usepackage{siunitx}  %% For proper units (e.g. \si{kg.m.s^{-1}}) and numbers (e.g. \num{.3e45})
+
+\usepackage{url}                 %% For citing webpages
+\usepackage[hidelinks]{hyperref} %% insert document internal links
+
+%% geometry of page
+%% vertikal
+\setlength{\voffset}{-0.5cm}
+\setlength{\textheight}{23cm}
+\setlength{\topmargin}{0cm}
+\setlength{\headheight}{6mm}
+\setlength{\headsep}{1cm}
+\setlength{\topskip}{0cm}
+\setlength{\footskip}{1cm}
+%% horizontal
+\setlength{\hoffset}{-0.4cm}
+\setlength{\textwidth}{15.5cm}
+\setlength{\oddsidemargin}{0.8cm}
+\setlength{\evensidemargin}{0.8cm}
+
+\setlength{\parindent}{15pt}        %% kein Einzug bei Paragrafenbeginn || paragraph indentation
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Hier geht es los || Your document editing starts here
+
+%% Autor und Abgabedatum ändern || Author and Date
+\def\autor{FirstName LastName}
+\def\datum{01. Januar 2020}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Titelseite || Title page
+\begin{document}
+
+\sloppy
+\pagestyle{headings}
+\pagenumbering{roman}
+
+\begin{titlepage}  
+  \begin{minipage}{0.5\textwidth}
+	\raggedright 
+	\includegraphics[width=8cm]{Logo_HBRS_74mm_Pfade.pdf}
+  \end{minipage}
+  \hspace{1cm}
+  \begin{minipage}{0.5\textwidth}
+	\raggedleft 
+	%\includegraphics[height=1.2cm]{second_logo.pdf} %% if you want to include a company logo uncomment this
+  \end{minipage}
+
+  \renewcommand{\baselinestretch}{1.4}\normalsize
+  \vspace{2cm}
+  \begin{center}
+
+%% einen Typ auswählen
+    \begin{Huge}\textbf{Bachelorarbeit / Masterarbeit}\end{Huge} \\
+    \vspace{0.8cm}
+
+%% einen Studiengang auswählen
+%    \begin{Large}\textbf{Bachelor of Computer Science}\end{Large} \\
+    \begin{Large}\textbf{Master of Computer Science}\end{Large} \\
+
+    \vspace{2.2cm}
+    \renewcommand{\baselinestretch}{1.2}\normalsize
+    \begin{huge}
+      \textbf{Endgültiger Titel \\}
+    \end{huge}
+    \renewcommand{\baselinestretch}{1.5}\normalsize
+    \vspace{0.7cm}
+
+    \begin{Large}\textbf{von \autor\ \\}
+    \end{Large}
+    Matrikelnummer \\ ~\\
+    \begin{Large}
+        \textbf{Fachbereich Informatik}
+    \end{Large}
+  \end{center}
+
+  \vspace{5.0cm}
+
+  \begin{large}
+    \textbf{
+      \begin{tabular}{ll}
+      Erstbetreuer & Title FirstName LastName \\
+      Zweitbetreuer & Title  FirstName LastName \\
+                     & \\
+      Eingereicht am: & \datum\ \\ %% or type in: 01. Januar 2017
+      \end{tabular}
+    }
+  \end{large}
+\end{titlepage}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Erklärung || Declaration of Academic Integrity
+
+\cleardoublepage
+\section*{Erklärung}
+
+\glqq Ich versichere hiermit, die von mir vorgelegte Arbeit selbstständig verfasst zu haben. Alle Stellen, die wörtlich oder sinngemaß aus veröffentlichten oder nicht veröffentlichten Arbeiten anderer entnommen sind, habe ich als entnommen kenntlich gemacht. Sämtliche Quellen und Hilfsmittel, die ich für die Arbeit benutzt habe, sind angegeben. Die Arbeit hat mit gleichem Inhalt bzw. in wesentlichen Teilen noch keiner anderen Prüfungsbehörde vorgelegen.
+
+Mir ist bewusst, dass sich die Hochschule vorbehält, meine Arbeit auf plagiierte Inhalte hin zu überprüfen und dass das Auffinden von plagiierten Inhalten zur Nichtigkeit der Arbeit, zur Aberkennung des Abschlusses und zur Exmatrikulation fähren kann.\grqq
+
+\vspace{2cm}
+
+\begin{minipage}[t]{7cm}
+\rule{5cm}{0.1mm}
+\flushleft
+Ort, Datum \\
+\end{minipage}
+\null\hfill
+\begin{minipage}[t]{7cm}
+\rule{7cm}{0.1mm}
+\flushleft
+Unterschrift \\
+\end{minipage}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Dankesagung
+
+\cleardoublepage
+\section*{Danksagung}
+1--2 Absätze \\
+
+An dieser Stelle möchte ich all jenen danken, die mich während meines Studiums
+und der Anfertigung dieser Arbeit begleitet haben. \\
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Zusammenfassung || Abstract
+
+\cleardoublepage
+\section*{Zusammenfassung}
+1 Absätz \\
+
+Fassen Sie Ihre Arbeit zusammen. Dies geschieht in der Regel zuletzt, nachdem Sie den
+Rest Ihrer Arbeit geschrieben haben. \\
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Inhaltsverzeichnis || Content and list of figures and tables
+
+\tableofcontents           %% Inhaltsverzeichnis generieren || Table of Contents
+\listoffigures             %% Abbildungsverzeichnis || List of Figures
+\listoftables              %% Tabellenverzeichnis || List of Tables
+
+\cleardoublepage
+%% Switch to different style of numbers
+\pagenumbering{arabic}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Kapitel 1 || Chapter 1
+
+\chapter{Einleitung}
+ca. 1-2 Seiten
+
+\begin{enumerate}
+ \item Fassen Sie die Bedeutung des Themas zusammen.
+ \item Beschreiben Sie den Stand der Technik.
+ \item Geben Sie die spezifische Frage / Hypothese an, die Sie beantworten / erkunden. Das Ziel der Arbeit muss klar werden.
+\end{enumerate}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Kapitel 2
+
+\chapter{Material und Methoden}  %% Remove and Materials if it doesn't apply.
+ca. 1-3 Seiten
+
+Dieser Abschnitt liefert die erforderlichen Informationen für die Reproduzierbarkeit der Arbeit. Das kann verwendete Materialien und Software einschließen. \\
+
+\section{Zitate und Zitieren}
+%% Indirect and short direct quotations.
+%% For quoting short statements or sentences -- use  \glqq und \grqq
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit \cite[SS. 35-40]{Becker2008}. Donec venenatis ultrices convallis \cite{Jones2013, MilaniSRCL2009}. \glqq Integer sagittis vel purus nec molestie\grqq{} \cite{Jones2013b}. Nullam dictum fermentum egestas. Sed erat sapien, eleifend ut accumsan non, rutrum vel sem. Aenean dignissim velit quis consequat faucibus \cite{OConnorH2009}. Etiam aliquet non tellus vitae tristique. Integer euismod volutpat sem at commodo (see \cite{Smith2016}). Pellentesque rhoncus nibh non mauris scelerisque, a fringilla arcu sodales. Curabitur vel libero nec massa lacinia varius \cite[Kapital ~2]{R-base}. Morbi non facilisis nisi. Lorem ipsum dolor sit amet, consectetur adipiscing elit \cite{sublime}.
+
+Quisque nisl est [\textit{sic}], rutrum nec eros facilisis, malesuada scelerisque diam. Quisque dictum suscipit aliquet. Ut faucibus faucibus erat tristique porta. Aenean dictum semper nulla, sit amet facilisis orci venenatis. At vero eos et accusam et justo duo dolores in:
+
+%% For direct quotation with multiple sentences - use the quote environment
+\begin{quote}
+Lorem ipsum dolor sit amet [writing is fun], consetetur sadipscing elitr ... sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. \cite[S. 23]{Smith2016}
+\end{quote}
+
+\noindent
+Citing an article written by one author \cite{Giddings2008}. \\
+Citing an article written by two authors \cite{OConnorH2009}. \\
+Citing an article written by three or more authors \cite{BlischakDW2016}. \\
+Citing multiple articles for one topic \cite{Giddings2008, OConnorH2009, BlischakDW2016} \\
+Citing a book \cite{Becker2008}. \\
+Citing an article from a conference proceedings \cite{MilaniSRCL2009}. \\
+Citing a chapter within a book \cite{EasterbrookSSD2008}. \\
+Citing a master thesis \cite{Smith2016}. \\
+Citing a program that has no formal citation, but a webpage \cite{sublime} \\
+Citing a webpage \cite{Wikipedia-OganizationalEthics2017}. \\
+Citing a personal communication \cite{Jones2013}.
+
+\section{Unterkapitel -- Gleichungen und Listen}
+\subsection{Unterunterkapitel -- Gleichungen}
+
+%% Equations using inline mode - not numbered
+Mathematische Gleichungen können innerhalb eines Satzes geschrieben werden, und ohne entsprechende Referenznummer: $E=mc^2$. Oder Gleichungen können in einem Anzeigemodus (Gleichungen \ref{eq.one}--\ref{eq.matrix}) mit entsprechender Referenznummer angegeben werden (z.B. Gleichung \ref{eq.one}). Die Gleichungen können komplexer werden. Zum Beispiel können sie mehrere Zeilen (d.h. Split) und Ausrichtungen (dh das \& Zeichen) innerhalb des Latexcodes enthalten (z.B. Gleichungen \ref{eq.two}--\ref{eq.three} or \ref{eq.main}). \\
+
+%% Note that the equation label is completely up to you.
+\begin{equation}
+    3\times\frac{1}{2}=1\frac{1}{2}
+    \label{eq.one}
+\end{equation}
+
+%% Using sfac
+\begin{equation}
+    3\times\sfrac{1}{2}=1\sfrac{1}{2}
+    \label{eq.one_v2}
+\end{equation}
+
+%% Alignment equations using &, with mulitple reference numbers
+\begin{align}
+    f(x) & = x^2 - 5x + 7 \label{eq.two} \\
+         & = 2x + 1 \label{eq.three}
+\end{align}
+
+%% Use ``split'' to create multiple lines, align equantion on &, but only report one reference number
+\begin{equation}
+    \begin{split}
+        \Delta E^{CBS}_{e} = & \frac{2}{3} \left( E_{\text{Part1}} - \sum_{1}^{n}  E_{\text{Part2}}^{\frac{1}{2}} \right) + \\
+                             & \frac{1}{3} \left( E_{\text{Part3}} - \sum_{1}^{n}  E_{\text{Part4}}^{3} \right)
+    \end{split}
+    \label{eq.main}
+\end{equation}
+
+%% Matrix notation
+\begin{equation}
+    M=
+    \begin{bmatrix}
+      1 & 2 & 3 & 4 & 5 \\
+      3 & 4 & 5 & 6 & 7
+    \end{bmatrix}
+    \label{eq.matrix}
+\end{equation}
+
+\subsection{Unterunterkapitel / Subsubsection -- Listen / List of Items}
+
+Sie können eine numerische Liste wie die folgende verwenden: \\
+\begin{enumerate}
+ \item Erster Gegenstand
+ \item Zweiter Gegenstand
+\end{enumerate}
+
+\noindent Oder eine Aufzählungspunktliste, wie die folgende: \\ %% Notice the \noindent
+\begin{itemize}
+ \item Erster Gegenstand
+ \item Zweiter Gegenstand
+\end{itemize}
+
+\noindent Oder eine benutzerdefinierte Liste, wie die folgende: \\
+\begin{description}
+ \item[1$^{st}$:] Erster Gegenstand
+ \item[$\alpha$:] Zweiter Gegenstand
+\end{description}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Kapitel 3
+
+\chapter{Ergebnisse}
+
+In diesem Abschnitt präsentieren wir Ihre Daten, Tabellen und Abbildungen. Vermeiden Sie es hier, Daten zu interpretieren; dazu dient das nächste Kapitel. \\
+
+\section{Unterkapitel -- Abbildungen}
+Bilder sind manchmal gut für die Darstellung komplexer Informationen (z.B. Abbildung \ref{fig:one}). \\
+
+\begin{figure}[h!]
+    \centering
+    \captionsetup{justification=centering}
+    \includegraphics[height=2cm]{fhlogo}
+    \caption{Untertitel für diese Abbildung.}
+    \label{fig:one}
+\end{figure}
+
+Zwei Bilder können zu einer Abbildung kombiniert werden (z. B. Abbildung \ref{fig:two}). \\
+
+\begin{figure}[h!]
+    \centering
+    \captionsetup{justification=centering}
+    \subfloat[Subcaption 1]{\includegraphics[width=0.2\hsize]{fhlogo}}
+    \hspace*{0.1\hsize}
+    \subfloat[Subcaption 2]{\includegraphics[width=0.2\hsize]{fhlogo}}
+    \caption{Untertitel für diese Abbildung.}
+    \label{fig:two}
+\end{figure}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Kapitel 4 || Chapter 4
+
+\chapter{Diskussion}
+
+In diesem Abschnitt interpretieren Sie Ihre Daten, diskutieren die Implikationen und wie die neuen Erkenntnisse verwendet werden können. Ggf.\ können Sie hier auch ansprechen, was nicht funktioniert hat, oder spezifische Schwierigkeiten beschreiben und wie Sie diese überwunden haben. \\
+
+\section{Unterkapitel}
+
+Einfache Tabellen (z.B. Tabelle \ref{tab:example_1}) können in LaTeX mit der Tabellen-Umgebung und tabellarischen Befehlen erstellt werden. Die Einrückungen innerhalb des \LaTeX-Codes selbst dienen nur der übersichtlichkeit für Sie -- sie wirken sich nicht auf das Ergebnis aus. \\
+
+%% Example of a simple table, without any special loaded libraries
+\begin{table}[h!]
+    \captionsetup{justification=centering}
+    \caption{Beschriftung steht über der Tabelle. \\ 
+    In der Regel ist es günstig, sehr lange Beschriftungen zu vermeiden. \\
+    And look at what you can do to a very long caption!}
+    \label{tab:example_1}
+    \centering
+    \begin{tabular}[c]{l | cc}
+	\toprule
+			& \textbf{Header $\alpha$} & \textbf{Header $\beta$}\\
+	\midrule
+	\textbf{Item 1} & 1.0               & 2.0\\
+	\textbf{Item 2} & 1.1               & 2.1\\
+	\textbf{Item 3} & 1.2               & 2.2\\
+	\textbf{Item 4} & 1.3               & 2.3\\
+	\bottomrule
+    \end{tabular}
+\end{table}
+
+\noindent Eine komplexere Tabelle kann auch gebildet werden (z. B.Tabelle \ref{tab:example_2}). \\
+
+%% Example of a more complex table, using threeparttable
+\begin{table}[!ht]
+    \centering
+    \begin{threeparttable}
+	\captionsetup{font=normalsize,labelfont=bf,labelsep=period}
+	\caption{Tabellenbeschriftung steht oberhalb der Tabelle.}
+	\label{tab:example2}
+	\normalsize
+    \label{tab:example_2}
+    \begin{tabular}[c]{l | cc || cc}
+	\toprule
+			& \multicolumn{2}{c ||}{\textbf{Main Header 1\tnote{a}}} & \multicolumn{2}{c}{\textbf{Main Header 2\tnote{a}}}\\
+			& \textbf{Subheader $\alpha$} & \textbf{Subheader $\beta$} & \textbf{Subheader $\gamma$} & \textbf{Subheader $\zeta$}\\
+	\midrule
+	\textbf{Item 1} & 1.0 & 2.0 & 3.0 & 4.0\\
+	\textbf{Item 2} & 1.1 & 2.1\\
+	\\
+			& \multicolumn{2}{c ||}{\textbf{Main Header 3}} & \multicolumn{2}{c}{\textbf{Main Header 4}}\\
+			& \textbf{Subheader $\alpha$} & \textbf{Subheader $\beta$} & \textbf{Subheader $\gamma$} & \textbf{Subheader $\zeta$}\\
+	\midrule
+	\textbf{Item 3} & 1.2 & 2.2 & 3.2 & 4.2\\
+	\textbf{Item 4} & 1.3 & 2.3\\
+	\bottomrule
+    \end{tabular}
+	\begin{tablenotes}
+	    %\footnotesize
+	    \item[a] Footnote one goes here.
+	    \item[b] Footnote two goes here.
+	\end{tablenotes}
+    \end{threeparttable}
+\end{table}
+
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Kapitel 5 || Chapter 5
+
+\chapter{Zusammenfassung und Ausblick}
+ca. 1-3 Absatz \\
+
+In diesem Abschnitt sollen das Projekt mit der zugrunde liegende Hypothese bzw. den Zielen sowie die Ergebnisse auf der Grundlage Ihrer Interpretation der Daten zusammengefasst werden. Sie sollten auch erwöhnen, was die nächsten Schritte sein sollten, um das Projekt in Zukunft fortzusetzen. \\
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Literaturverzeichnis
+
+\cleardoublepage
+\addcontentsline{toc}{chapter}{Literaturverzeichnis}
+
+%% Harvard style citations with alphebetically sorted bibliography
+%%     Must be used with \usepackage[sort&compress]{natbib} in the document preamble
+%\bibliographystyle{kluwer}
+
+%% Vancouver style citations with bibliography sorted by appearance of reference
+%%     Must be used with \usepackage[sort&compress,numbers]{natbib} in the document preamble
+
+%% babplain (e.g. und, Seiten) vs. plain (e.g. and, pages)
+\bibliographystyle{babunsrt-lf}
+
+% \bibliographystyle{IEEEtran}  % a common used one in engineering 
+% \bibliographystyle{unsrtnat}
+
+\bibliography{literatur}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Anhang || Appendix
+
+\cleardoublepage
+\addcontentsline{toc}{chapter}{Anhang}
+
+\begin{appendix}
+\chapter{Anhang Thema A Titel}
+In diesem Abschnitt können Sie zusützliche Informationen, hilfreiche Scripts/Code, Tabellen und Abbildungen platzieren. In der Regel dient dies zur Ergänzung oder Erläuterung von Informationen im Hauptteil Ihrer Arbeit. Ein Beispiel dafür könnten im Hauptteil nicht dargestellte Daten sein (z. B. x,y,z-Koordinate im kartesischen Raum). überlegen Sie, was  hilfreich sein könnte für den Leser und womöglich auch für Studenten, die zukünftig an diesem Thema arbeiten. \\
+
+% \chapter{Anhang Thema B Titel}  %% Use if needed
+
+\end{appendix}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Close document
+\end{document}
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
diff --git a/thesis_english.tex b/thesis_english.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2a1e00c9f87694274b841bdea4a9a468bc7cb18e
--- /dev/null
+++ b/thesis_english.tex
@@ -0,0 +1,430 @@
+\NeedsTeXFormat{LaTeX2e}       %% latest stable release of LaTeX
+
+\documentclass[a4paper]{book}
+
+%% Allow for German character input from keyboard
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc}
+
+\usepackage{mathptmx} %% Change the document font - mathptmx provides Times font (defualt)
+
+%% German-specific headers, content (e.g. date) and commands (e.g. hypenation)
+\usepackage[ngerman]{babel}
+
+%% Need to also deal with the bibliography (e.g. "und" within author list; "Seiten")
+%% options: babplain, babplain-fl, babalpha, babalpha-fl, babunsrt, babunsrt-fl, bababbrv and bababbrv-fl.
+%%    The -fl means to use the first, last name style of author listing (after the first author)
+\usepackage[fixlanguage]{babelbib}
+\selectbiblanguage{ngerman}
+
+\usepackage{amsmath}
+\usepackage{xfrac}	%% alternative fraction notation using \sfac
+
+%\usepackage{float} %% better float management
+
+%% Figures
+\usepackage{graphicx}          %% Grafiken einbinden (hängt von latex/dvipdf oder pdflatex ab!) || For figures
+\usepackage{subfig}            %% Teilgrafiken erlauben || Allows subfigures within one parent figure
+
+%% Tables
+\usepackage{booktabs, threeparttable}                %% table with footnotes and lines (see Table 2)
+\usepackage[labelfont=bf, labelsep=period]{caption}  %% captions with boldface ``Figure #.'' and ``Table #.'' with period as label seperator
+
+%% Scientific units
+\usepackage{siunitx}  %% For proper units (e.g. \si{kg.m.s^{-1}}) and numbers (e.g. \num{.3e45})
+
+\usepackage{url}                 %% For citing webpages
+\usepackage[hidelinks]{hyperref} %% insert document internal links
+
+%% geometry of page
+%% vertikal
+\setlength{\voffset}{-0.5cm}
+\setlength{\textheight}{23cm}
+\setlength{\topmargin}{0cm}
+\setlength{\headheight}{6mm}
+\setlength{\headsep}{1cm}
+\setlength{\topskip}{0cm}
+\setlength{\footskip}{1cm}
+%% horizontal
+\setlength{\hoffset}{-0.4cm}
+\setlength{\textwidth}{15.5cm}
+\setlength{\oddsidemargin}{0.8cm}
+\setlength{\evensidemargin}{0.8cm}
+
+\setlength{\parindent}{15pt}        %% kein Einzug bei Paragrafenbeginn || paragraph indentation
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Hier geht es los || Your document editing starts here
+
+%% Autor und Abgabedatum ändern || Author and Date
+\def\autor{FirstName LastName}
+\def\datum{01. Januar 2020}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Titelseite || Title page
+\begin{document}
+
+\sloppy
+\pagestyle{headings}
+\pagenumbering{roman}
+
+\begin{titlepage}  
+  \begin{minipage}{0.5\textwidth}
+	\raggedright 
+	\includegraphics[width=8cm]{Logo_HBRS_74mm_Pfade.pdf}
+  \end{minipage}
+  \hspace{1cm}
+  \begin{minipage}{0.5\textwidth}
+	\raggedleft 
+	%\includegraphics[height=1.2cm]{second_logo.pdf} %% if you want to include a company logo uncomment this
+  \end{minipage}
+
+  \renewcommand{\baselinestretch}{1.4}\normalsize
+  \vspace{2cm}
+  \begin{center}
+
+%% einen Typ auswählen
+    \begin{Huge}\textbf{Bachelorarbeit / Masterarbeit}\end{Huge} \\
+    \vspace{0.8cm}
+
+%% einen Studiengang auswählen
+%    \begin{Large}\textbf{Bachelor of Computer Science}\end{Large} \\
+    \begin{Large}\textbf{Master of Computer Science}\end{Large} \\
+
+    \vspace{2.2cm}
+    \renewcommand{\baselinestretch}{1.2}\normalsize
+    \begin{huge}
+      \textbf{Endgültiger Titel \\}
+    \end{huge}
+    \renewcommand{\baselinestretch}{1.5}\normalsize
+    \vspace{0.7cm}
+
+    \begin{Large}\textbf{von \autor\ \\}
+    \end{Large}
+    Matrikelnummer \\ ~\\
+    \begin{Large}
+        \textbf{Fachbereich Informatik}
+    \end{Large}
+  \end{center}
+
+  \vspace{5.0cm}
+
+  \begin{large}
+    \textbf{
+      \begin{tabular}{ll}
+      Erstbetreuer & Title FirstName LastName \\
+      Zweitbetreuer & Title  FirstName LastName \\
+                     & \\
+      Eingereicht am: & \datum\ \\ %% or type in: 01. Januar 2017
+      \end{tabular}
+    }
+  \end{large}
+\end{titlepage}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Erklärung || Declaration of Academic Integrity
+
+\cleardoublepage
+\section*{Erklärung}
+
+\glqq Ich versichere hiermit, die von mir vorgelegte Arbeit selbstständig verfasst zu haben. Alle Stellen, die wörtlich oder sinngemaß aus veröffentlichten oder nicht veröffentlichten Arbeiten anderer entnommen sind, habe ich als entnommen kenntlich gemacht. Sämtliche Quellen und Hilfsmittel, die ich für die Arbeit benutzt habe, sind angegeben. Die Arbeit hat mit gleichem Inhalt bzw. in wesentlichen Teilen noch keiner anderen Prüfungsbehörde vorgelegen.
+
+Mir ist bewusst, dass sich die Hochschule vorbehält, meine Arbeit auf plagiierte Inhalte hin zu überprüfen und dass das Auffinden von plagiierten Inhalten zur Nichtigkeit der Arbeit, zur Aberkennung des Abschlusses und zur Exmatrikulation fähren kann.\grqq
+
+\vspace{2cm}
+
+\begin{minipage}[t]{7cm}
+\rule{5cm}{0.1mm}
+\flushleft
+Ort, Datum \\
+\end{minipage}
+\null\hfill
+\begin{minipage}[t]{7cm}
+\rule{7cm}{0.1mm}
+\flushleft
+Unterschrift \\
+\end{minipage}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Dankesagung
+
+\cleardoublepage
+\section*{Danksagung}
+1--2 Absätze \\
+
+An dieser Stelle möchte ich all jenen danken, die mich während meines Studiums
+und der Anfertigung dieser Arbeit begleitet haben. \\
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Zusammenfassung || Abstract
+
+\cleardoublepage
+\section*{Zusammenfassung}
+1 Absätz \\
+
+Fassen Sie Ihre Arbeit zusammen. Dies geschieht in der Regel zuletzt, nachdem Sie den
+Rest Ihrer Arbeit geschrieben haben. \\
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Inhaltsverzeichnis || Content and list of figures and tables
+
+\tableofcontents           %% Inhaltsverzeichnis generieren || Table of Contents
+\listoffigures             %% Abbildungsverzeichnis || List of Figures
+\listoftables              %% Tabellenverzeichnis || List of Tables
+
+\cleardoublepage
+%% Switch to different style of numbers
+\pagenumbering{arabic}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Kapitel 1 || Chapter 1
+
+\chapter{Einleitung}
+ca. 1-2 Seiten
+
+\begin{enumerate}
+ \item Fassen Sie die Bedeutung des Themas zusammen.
+ \item Beschreiben Sie den Stand der Technik.
+ \item Geben Sie die spezifische Frage / Hypothese an, die Sie beantworten / erkunden. Das Ziel der Arbeit muss klar werden.
+\end{enumerate}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Kapitel 2
+
+\chapter{Material und Methoden}  %% Remove and Materials if it doesn't apply.
+ca. 1-3 Seiten
+
+Dieser Abschnitt liefert die erforderlichen Informationen für die Reproduzierbarkeit der Arbeit. Das kann verwendete Materialien und Software einschließen. \\
+
+\section{Zitate und Zitieren}
+%% Indirect and short direct quotations.
+%% For quoting short statements or sentences -- use  \glqq und \grqq
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit \cite[SS. 35-40]{Becker2008}. Donec venenatis ultrices convallis \cite{Jones2013, MilaniSRCL2009}. \glqq Integer sagittis vel purus nec molestie\grqq{} \cite{Jones2013b}. Nullam dictum fermentum egestas. Sed erat sapien, eleifend ut accumsan non, rutrum vel sem. Aenean dignissim velit quis consequat faucibus \cite{OConnorH2009}. Etiam aliquet non tellus vitae tristique. Integer euismod volutpat sem at commodo (see \cite{Smith2016}). Pellentesque rhoncus nibh non mauris scelerisque, a fringilla arcu sodales. Curabitur vel libero nec massa lacinia varius \cite[Kapital ~2]{R-base}. Morbi non facilisis nisi. Lorem ipsum dolor sit amet, consectetur adipiscing elit \cite{sublime}.
+
+Quisque nisl est [\textit{sic}], rutrum nec eros facilisis, malesuada scelerisque diam. Quisque dictum suscipit aliquet. Ut faucibus faucibus erat tristique porta. Aenean dictum semper nulla, sit amet facilisis orci venenatis. At vero eos et accusam et justo duo dolores in:
+
+%% For direct quotation with multiple sentences - use the quote environment
+\begin{quote}
+Lorem ipsum dolor sit amet [writing is fun], consetetur sadipscing elitr ... sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. \cite[S. 23]{Smith2016}
+\end{quote}
+
+\noindent
+Citing an article written by one author \cite{Giddings2008}. \\
+Citing an article written by two authors \cite{OConnorH2009}. \\
+Citing an article written by three or more authors \cite{BlischakDW2016}. \\
+Citing multiple articles for one topic \cite{Giddings2008, OConnorH2009, BlischakDW2016} \\
+Citing a book \cite{Becker2008}. \\
+Citing an article from a conference proceedings \cite{MilaniSRCL2009}. \\
+Citing a chapter within a book \cite{EasterbrookSSD2008}. \\
+Citing a master thesis \cite{Smith2016}. \\
+Citing a program that has no formal citation, but a webpage \cite{sublime} \\
+Citing a webpage \cite{Wikipedia-OganizationalEthics2017}. \\
+Citing a personal communication \cite{Jones2013}.
+
+\section{Unterkapitel -- Gleichungen und Listen}
+\subsection{Unterunterkapitel -- Gleichungen}
+
+%% Equations using inline mode - not numbered
+Mathematische Gleichungen können innerhalb eines Satzes geschrieben werden, und ohne entsprechende Referenznummer: $E=mc^2$. Oder Gleichungen können in einem Anzeigemodus (Gleichungen \ref{eq.one}--\ref{eq.matrix}) mit entsprechender Referenznummer angegeben werden (z.B. Gleichung \ref{eq.one}). Die Gleichungen können komplexer werden. Zum Beispiel können sie mehrere Zeilen (d.h. Split) und Ausrichtungen (dh das \& Zeichen) innerhalb des Latexcodes enthalten (z.B. Gleichungen \ref{eq.two}--\ref{eq.three} or \ref{eq.main}). \\
+
+%% Note that the equation label is completely up to you.
+\begin{equation}
+    3\times\frac{1}{2}=1\frac{1}{2}
+    \label{eq.one}
+\end{equation}
+
+%% Using sfac
+\begin{equation}
+    3\times\sfrac{1}{2}=1\sfrac{1}{2}
+    \label{eq.one_v2}
+\end{equation}
+
+%% Alignment equations using &, with mulitple reference numbers
+\begin{align}
+    f(x) & = x^2 - 5x + 7 \label{eq.two} \\
+         & = 2x + 1 \label{eq.three}
+\end{align}
+
+%% Use ``split'' to create multiple lines, align equantion on &, but only report one reference number
+\begin{equation}
+    \begin{split}
+        \Delta E^{CBS}_{e} = & \frac{2}{3} \left( E_{\text{Part1}} - \sum_{1}^{n}  E_{\text{Part2}}^{\frac{1}{2}} \right) + \\
+                             & \frac{1}{3} \left( E_{\text{Part3}} - \sum_{1}^{n}  E_{\text{Part4}}^{3} \right)
+    \end{split}
+    \label{eq.main}
+\end{equation}
+
+%% Matrix notation
+\begin{equation}
+    M=
+    \begin{bmatrix}
+      1 & 2 & 3 & 4 & 5 \\
+      3 & 4 & 5 & 6 & 7
+    \end{bmatrix}
+    \label{eq.matrix}
+\end{equation}
+
+\subsection{Unterunterkapitel / Subsubsection -- Listen / List of Items}
+
+Sie können eine numerische Liste wie die folgende verwenden: \\
+\begin{enumerate}
+ \item Erster Gegenstand
+ \item Zweiter Gegenstand
+\end{enumerate}
+
+\noindent Oder eine Aufzählungspunktliste, wie die folgende: \\ %% Notice the \noindent
+\begin{itemize}
+ \item Erster Gegenstand
+ \item Zweiter Gegenstand
+\end{itemize}
+
+\noindent Oder eine benutzerdefinierte Liste, wie die folgende: \\
+\begin{description}
+ \item[1$^{st}$:] Erster Gegenstand
+ \item[$\alpha$:] Zweiter Gegenstand
+\end{description}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Kapitel 3
+
+\chapter{Ergebnisse}
+
+In diesem Abschnitt präsentieren wir Ihre Daten, Tabellen und Abbildungen. Vermeiden Sie es hier, Daten zu interpretieren; dazu dient das nächste Kapitel. \\
+
+\section{Unterkapitel -- Abbildungen}
+Bilder sind manchmal gut für die Darstellung komplexer Informationen (z.B. Abbildung \ref{fig:one}). \\
+
+\begin{figure}[h!]
+    \centering
+    \captionsetup{justification=centering}
+    \includegraphics[height=2cm]{fhlogo}
+    \caption{Untertitel für diese Abbildung.}
+    \label{fig:one}
+\end{figure}
+
+Zwei Bilder können zu einer Abbildung kombiniert werden (z. B. Abbildung \ref{fig:two}). \\
+
+\begin{figure}[h!]
+    \centering
+    \captionsetup{justification=centering}
+    \subfloat[Subcaption 1]{\includegraphics[width=0.2\hsize]{fhlogo}}
+    \hspace*{0.1\hsize}
+    \subfloat[Subcaption 2]{\includegraphics[width=0.2\hsize]{fhlogo}}
+    \caption{Untertitel für diese Abbildung.}
+    \label{fig:two}
+\end{figure}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Kapitel 4 || Chapter 4
+
+\chapter{Diskussion}
+
+In diesem Abschnitt interpretieren Sie Ihre Daten, diskutieren die Implikationen und wie die neuen Erkenntnisse verwendet werden können. Ggf.\ können Sie hier auch ansprechen, was nicht funktioniert hat, oder spezifische Schwierigkeiten beschreiben und wie Sie diese überwunden haben. \\
+
+\section{Unterkapitel}
+
+Einfache Tabellen (z.B. Tabelle \ref{tab:example_1}) können in LaTeX mit der Tabellen-Umgebung und tabellarischen Befehlen erstellt werden. Die Einrückungen innerhalb des \LaTeX-Codes selbst dienen nur der übersichtlichkeit für Sie -- sie wirken sich nicht auf das Ergebnis aus. \\
+
+%% Example of a simple table, without any special loaded libraries
+\begin{table}[h!]
+    \captionsetup{justification=centering}
+    \caption{Beschriftung steht über der Tabelle. \\ 
+    In der Regel ist es günstig, sehr lange Beschriftungen zu vermeiden. \\
+    And look at what you can do to a very long caption!}
+    \label{tab:example_1}
+    \centering
+    \begin{tabular}[c]{l | cc}
+	\toprule
+			& \textbf{Header $\alpha$} & \textbf{Header $\beta$}\\
+	\midrule
+	\textbf{Item 1} & 1.0               & 2.0\\
+	\textbf{Item 2} & 1.1               & 2.1\\
+	\textbf{Item 3} & 1.2               & 2.2\\
+	\textbf{Item 4} & 1.3               & 2.3\\
+	\bottomrule
+    \end{tabular}
+\end{table}
+
+\noindent Eine komplexere Tabelle kann auch gebildet werden (z. B.Tabelle \ref{tab:example_2}). \\
+
+%% Example of a more complex table, using threeparttable
+\begin{table}[!ht]
+    \centering
+    \begin{threeparttable}
+	\captionsetup{font=normalsize,labelfont=bf,labelsep=period}
+	\caption{Tabellenbeschriftung steht oberhalb der Tabelle.}
+	\label{tab:example2}
+	\normalsize
+    \label{tab:example_2}
+    \begin{tabular}[c]{l | cc || cc}
+	\toprule
+			& \multicolumn{2}{c ||}{\textbf{Main Header 1\tnote{a}}} & \multicolumn{2}{c}{\textbf{Main Header 2\tnote{a}}}\\
+			& \textbf{Subheader $\alpha$} & \textbf{Subheader $\beta$} & \textbf{Subheader $\gamma$} & \textbf{Subheader $\zeta$}\\
+	\midrule
+	\textbf{Item 1} & 1.0 & 2.0 & 3.0 & 4.0\\
+	\textbf{Item 2} & 1.1 & 2.1\\
+	\\
+			& \multicolumn{2}{c ||}{\textbf{Main Header 3}} & \multicolumn{2}{c}{\textbf{Main Header 4}}\\
+			& \textbf{Subheader $\alpha$} & \textbf{Subheader $\beta$} & \textbf{Subheader $\gamma$} & \textbf{Subheader $\zeta$}\\
+	\midrule
+	\textbf{Item 3} & 1.2 & 2.2 & 3.2 & 4.2\\
+	\textbf{Item 4} & 1.3 & 2.3\\
+	\bottomrule
+    \end{tabular}
+	\begin{tablenotes}
+	    %\footnotesize
+	    \item[a] Footnote one goes here.
+	    \item[b] Footnote two goes here.
+	\end{tablenotes}
+    \end{threeparttable}
+\end{table}
+
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Kapitel 5 || Chapter 5
+
+\chapter{Zusammenfassung und Ausblick}
+ca. 1-3 Absatz \\
+
+In diesem Abschnitt sollen das Projekt mit der zugrunde liegende Hypothese bzw. den Zielen sowie die Ergebnisse auf der Grundlage Ihrer Interpretation der Daten zusammengefasst werden. Sie sollten auch erwöhnen, was die nächsten Schritte sein sollten, um das Projekt in Zukunft fortzusetzen. \\
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Literaturverzeichnis
+
+\cleardoublepage
+\addcontentsline{toc}{chapter}{Literaturverzeichnis}
+
+%% Harvard style citations with alphebetically sorted bibliography
+%%     Must be used with \usepackage[sort&compress]{natbib} in the document preamble
+%\bibliographystyle{kluwer}
+
+%% Vancouver style citations with bibliography sorted by appearance of reference
+%%     Must be used with \usepackage[sort&compress,numbers]{natbib} in the document preamble
+
+%% babplain (e.g. und, Seiten) vs. plain (e.g. and, pages)
+\bibliographystyle{babunsrt-lf}
+
+% \bibliographystyle{IEEEtran}  % a common used one in engineering 
+% \bibliographystyle{unsrtnat}
+
+\bibliography{literatur}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Anhang || Appendix
+
+\cleardoublepage
+\addcontentsline{toc}{chapter}{Anhang}
+
+\begin{appendix}
+\chapter{Anhang Thema A Titel}
+In diesem Abschnitt können Sie zusützliche Informationen, hilfreiche Scripts/Code, Tabellen und Abbildungen platzieren. In der Regel dient dies zur Ergänzung oder Erläuterung von Informationen im Hauptteil Ihrer Arbeit. Ein Beispiel dafür könnten im Hauptteil nicht dargestellte Daten sein (z. B. x,y,z-Koordinate im kartesischen Raum). überlegen Sie, was  hilfreich sein könnte für den Leser und womöglich auch für Studenten, die zukünftig an diesem Thema arbeiten. \\
+
+% \chapter{Anhang Thema B Titel}  %% Use if needed
+
+\end{appendix}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Close document
+\end{document}
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%