Browse Source

first push

FlipediFlop 10 months ago
commit
21b8939c7a

+ 10 - 0
.gitignore

@@ -0,0 +1,10 @@
+*.aux
+*.lof
+*.log
+*.lot
+*.out
+*.fls
+*.fdb_latexmk
+*.blg
+*.synctex.gz
+*.toc

+ 44 - 0
Makefile

@@ -0,0 +1,44 @@
+-include Makefile.cfg
+
+ifeq "$(COMPRESSION)" "0"
+DVIPDF_ARG+=-dAutoFilterColorImages=false -dColorImageFilter=/FlateEncode
+endif
+
+ifeq "$(LETTER)" "1"
+DVIPS_ARG+=-t letter
+endif
+
+#LATEX=latex
+LATEX=pdflatex
+
+.PRECIOUS:%.aux %.bbl
+
+%.dvi:%.tex
+
+%.aux:%.tex
+	$(LATEX) $<
+
+%.bbl:%.tex %.bib %.aux
+	bibtex $*
+	$(LATEX) $<
+	bibtex $*
+
+%.bbl:%.tex %.aux
+	@echo WARNING: no $*.bib found... assuming you are not using BibTeX
+	touch $@
+
+%.dvi:%.tex %.bbl
+	$(LATEX) $<
+
+%.ps:%.dvi
+	dvips -j0 -P generic $(DVIPS_ARG) $< -o $@
+
+#this is the old version using dvipdf, which can not handle letter papersize
+#%.pdf:%.dvi
+#	dvipdf $(DVIPDF_ARG) $<
+
+#this is the new version, going manually via dvips and ps2pdf
+#this is exactly the same as the dvipdf script does
+%.pdf:%.ps
+	ps2pdf14 $(DVIPDF_ARG) $< $@
+

+ 11 - 0
abstract.tex

@@ -0,0 +1,11 @@
+\begin{center}{\sectfont\LARGE \"{U}berblick}\end{center}
+
+German version of the abstract. \newline\blindtext
+
+\vspace{\fill}
+
+\begin{center}{\sectfont\LARGE Abstract}\end{center}
+
+English version of the abstract. \newline\blindtext
+
+\cleardoublepage

+ 67 - 0
chapters/appendix/appendix.tex

@@ -0,0 +1,67 @@
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Author:   Phillip Rothenbeck
+% Title:    Your Thesis
+% File:     appendix/appendix.tex
+% Part:     appendix
+% Description:
+%         summary of the content in this chapter
+% Version:  19.07.2024
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+\chapter{Mathematical Details}
+\label{app:mathDetails}
+
+chapter intro\newline
+
+\blindtext
+
+% -------------------------------------------------------------------
+
+\section{Further Explanations}
+\label{app:explanations}
+
+Explain some complicated issues in this section.\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+\section{Fancy Proof}
+\label{app:proof}
+
+Proof a statement here.\newline
+
+\Blindtext[2][2]
+
+%---------------------------------------------------------------------------
+% -------------------------------------------------------------------
+
+\chapter{Additional Results}
+\label{app:results}
+
+chapter intro\newline
+
+\blindtext
+
+% -------------------------------------------------------------------
+
+\section{Nice Plots of Experiment 1}
+\label{app:exp1}
+
+include additional figures
+
+% -------------------------------------------------------------------
+
+\section{Nice Plots of Experiment 2}
+\label{app:exp2}
+
+include additional figures
+
+% -------------------------------------------------------------------
+
+\section{Nice Plots of Experiment 3}
+\label{app:exp3}
+
+include additional figures
+
+%---------------------------------------------------------------------------

+ 73 - 0
chapters/chap01-introduction/chap01-introduction.tex

@@ -0,0 +1,73 @@
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Author:   Phillip Rothenbeck
+% Title:    Your Thesis
+% File:     chap01-introduction/chap01-introduction.tex
+% Part:     introduction
+% Description:
+%         summary of the content in this chapter
+% Version:  01.01.2012
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+\chapter{Introduction} % \chapter{Einf\"{u}hrung}
+\label{chap:introduction}
+
+chapter intro\newline
+
+\blindtext
+
+% -------------------------------------------------------------------
+
+\section{Motivation}
+\label{sec:motivation}
+
+Motivation of your topic.\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+\section{Your tasks} % \section{Aufgabenstellung}
+\label{sec:task}
+
+Explain the tasks you want to solve.\newline
+
+\blindtext
+
+% -------------------------------------------------------------------
+
+\section{Related work} % \section{Literatur\"{u}berblick}
+\label{sec:relatedWork}
+
+Overview of existing literature, \eg~\cite{Doe12:TIA}. You can split it into several subsections if you want to (not mandatory).
+
+\subsection{Part 1}
+\label{subsec:part1}
+
+literature part 1\newline
+
+\Blindtext[2][2]
+
+
+\subsection{Part 2}
+\label{subsec:part2}
+
+literature part 2\newline
+
+\Blindtext[2][2]
+
+
+% -------------------------------------------------------------------
+
+% You can insert additional sections like notations or something else
+
+% -------------------------------------------------------------------
+
+\section{Overview} % \section{Aufbau der Arbeit}
+\label{sec:overview}
+
+Overview of remaining chapters\newline
+
+\blindtext
+
+
+% -------------------------------------------------------------------

+ 59 - 0
chapters/chap02/chap02.tex

@@ -0,0 +1,59 @@
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Author:   Phillip Rothenbeck
+% Title:    Your Thesis
+% File:     chap02/chap02.tex
+% Part:     theoretical background
+% Description:
+%         summary of the content in this chapter
+% Version:  01.01.2012
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\chapter{Theoretical background}
+\label{chap:background}
+
+chapter intro\newline
+
+\blindtext
+
+% -------------------------------------------------------------------
+
+\section{Basics}
+\label{sec:basics}
+
+explain some basic techniques
+reference: Figure~\ref{fig:myFigure}\newline
+
+\begin{figure}[tb]
+  \centering
+  \rule{4cm}{1cm}
+  \caption[figure caption displayed in list of figures]{figure caption displayed below the figure}
+  \label{fig:myFigure}
+\end{figure}
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+\section{Already existing solutions}
+\label{sec:existingSolutions}
+
+detailed explanations of existing methods, models, etc. which solve your task or a similar task
+describe starting point for your ideas
+reference: Table~\ref{fig:myTable}\newline
+
+\begin{table}[tb]
+  \centering
+  \begin{tabular}{cc}
+    example & table \\
+    1       & 2     \\
+    3       & 4     \\
+  \end{tabular}
+  \caption[table caption displayed in list of figures]{table caption displayed below the table}
+  \label{fig:myTable}
+\end{table}
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+% insert further sections if necessary
+

+ 36 - 0
chapters/chap03/chap03.tex

@@ -0,0 +1,36 @@
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Author:   Phillip Rothenbeck
+% Title:    Your Thesis
+% File:     chap03/chap03.tex
+% Part:     your contribution
+% Description:
+%         summary of the content in this chapter
+% Version:  01.01.2012
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\chapter{Your contribution}
+\label{chap:contribution}
+
+chapter intro\newline
+
+\blindtext
+% -------------------------------------------------------------------
+
+\section{Ideas}
+\label{sec:ideas}
+
+Explain your ideas.\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+\section{Approach}
+\label{sec:approach}
+
+your approach, how do you implement your ideas\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+% insert further sections if necessary

+ 73 - 0
chapters/chap04/chap04.tex

@@ -0,0 +1,73 @@
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Author:   Phillip Rothenbeck
+% Title:    Your Thesis
+% File:     chap04/chap04.tex
+% Part:     experimental results, evaluation
+% Description:
+%         summary of the content in this chapter
+% Version:  01.01.2012
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\chapter{Experimental results and evaluation}
+\label{chap:evaluation}
+
+chapter intro, which applications do you analyze, perhaps summarize your results beforehand\newline
+
+\blindtext
+% -------------------------------------------------------------------
+
+\section{Experiment 1}
+\label{sec:experiment1}
+
+application, task of experiment 1\newline
+
+\Blindtext[2][2]
+
+
+% -------------------------------------------------------------------
+
+\subsection{Settings of experiment 1}
+\label{subsec:settings1}
+
+which data/datasets do you use? which parameter settings\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+\subsection{Results of experiment 1}
+\label{sec:results1}
+
+evaluation of experiment 1\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+\section{Experiment 2}
+\label{sec:experiment1}
+
+application, task of experiment 2\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+\subsection{Settings of experiment 2}
+\label{subsec:settings2}
+
+which data/datasets do you use? which parameter settings\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+\subsection{Results of experiment 2}
+\label{sec:results2}
+
+evaluation of experiment 2\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+% insert further sections if necessary

+ 75 - 0
chapters/conclusions/__latexindent_temp_conclusions.tex

@@ -0,0 +1,75 @@
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Author:   Phillip Rothenbeck
+% Title:    Your Thesis
+% File:     conclusions/conclusions.tex
+% Part:     conclusions
+% Description:
+%         summary of the content in this chapter
+% Version:  01.01.2012
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\chapter{Conclusions} % \chap{Zusammenfassung}
+\label{chap:conclusions}
+
+\begin{itemize}
+  \item summarize your findings and draw conclusions
+  \item you can use different sections (and even subsections) for different applications or approaches if you want to
+  \item a single text, e.g. with paragraphs, is also sufficient
+\end{itemize}
+
+% -------------------------------------------------------------------
+
+\section{Application 1}
+\label{sec:application1}
+
+section intro, what was the task\newline
+
+\blindtext
+
+% -------------------------------------------------------------------
+
+\subsection{Approach 1}
+\label{subsec:approach1}
+
+findings and conclusions of approach 1 in application 1\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+\subsection{Approach 2}
+\label{subsec:approach2}
+
+findings and conclusions of approach 2 in application 1\newline
+
+\Blindtext[2][2]
+
+
+% -------------------------------------------------------------------
+
+\section{Application 2}
+\label{sec:application2}
+
+section intro, what was the task\newline
+
+\blindtext
+% -------------------------------------------------------------------
+
+\subsection{Basic method}
+\label{subsec:basisMethod}
+
+findings and conclusions of your basic method\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+\subsection{Extended method}
+\label{subsec:extendedMethod}
+
+findings and conclusions of your extended method, e.g. with additional parameter optimization\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+% insert further sections if necessary

+ 75 - 0
chapters/conclusions/conclusions.tex

@@ -0,0 +1,75 @@
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Author:   Phillip Rothenbeck
+% Title:    Your Thesis
+% File:     conclusions/conclusions.tex
+% Part:     conclusions
+% Description:
+%         summary of the content in this chapter
+% Version:  01.01.2012
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\chapter{Conclusions} % \chap{Zusammenfassung}
+\label{chap:conclusions}
+
+\begin{itemize}
+  \item summarize your findings and draw conclusions
+  \item you can use different sections (and even subsections) for different applications or approaches if you want to
+  \item a single text, e.g. with paragraphs, is also sufficient
+\end{itemize}
+
+% -------------------------------------------------------------------
+
+\section{Application 1}
+\label{sec:application1}
+
+section intro, what was the task\newline
+
+\blindtext
+
+% -------------------------------------------------------------------
+
+\subsection{Approach 1}
+\label{subsec:approach1}
+
+findings and conclusions of approach 1 in application 1\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+\subsection{Approach 2}
+\label{subsec:approach2}
+
+findings and conclusions of approach 2 in application 1\newline
+
+\Blindtext[2][2]
+
+
+% -------------------------------------------------------------------
+
+\section{Application 2}
+\label{sec:application2}
+
+section intro, what was the task\newline
+
+\blindtext
+% -------------------------------------------------------------------
+
+\subsection{Basic method}
+\label{subsec:basisMethod}
+
+findings and conclusions of your basic method\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+\subsection{Extended method}
+\label{subsec:extendedMethod}
+
+findings and conclusions of your extended method, e.g. with additional parameter optimization\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+% insert further sections if necessary

+ 59 - 0
chapters/furtherWork/furtherWork.tex

@@ -0,0 +1,59 @@
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Author:   Phillip Rothenbeck
+% Title:    Your Thesis
+% File:     furtherWork/furtherWork.tex
+% Part:     ideas for further work
+% Description:
+%         summary of the content in this chapter
+% Version:  01.01.2012
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\chapter{Further work} % \chap{Ausblick}
+\label{chap:furtherWork}
+
+\begin{itemize}
+  \item explain ideas for further work
+  \item what is not yet solved?
+  \item possible extensions/improvements
+  \item you can use different sections (and even subsections) for different ideas, problems
+  \item a single text, e.g. with paragraphs, is also sufficient
+\end{itemize}
+
+% -------------------------------------------------------------------
+
+\section{Further ideas for your approach}
+\label{sec:furtherIdeas}
+
+shortcomings of your approach, problems\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+\subsection{First extension}
+\label{subsec:firstExtension}
+
+ideas for a first extension\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+\subsection{Second extension}
+\label{subsec:secondExtension}
+
+ideas for a second extension\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+\section{Ideas for a different approach}
+\label{sec:differentApproach}
+
+how to solve your problem in another way\newline
+
+\Blindtext[2][2]
+
+% -------------------------------------------------------------------
+
+% insert further sections if necessary

+ 230 - 0
dbvthesis.cls

@@ -0,0 +1,230 @@
+%%
+%% This is file `dbvthesis.cls'
+%%
+%% IMPORTANT NOTICE:
+%% 
+%% You are not allowed to change this file.  You may however copy this file
+%% to a file with a different name and then change the copy.
+%% 
+%% You are NOT ALLOWED to distribute this file alone.  You are NOT ALLOWED
+%% to take money for the distribution or use of this file (or a changed
+%% version) except for a nominal charge for copying etc.
+%% 
+%% 
+\def\filedate{2012/01/02}
+\def\fileversion{1.0}
+\def\filename{dbvthesis.cls}
+\NeedsTeXFormat{LaTeX2e}[1997/06/01]
+
+\ProvidesClass{dbvthesis}[\filedate\space v\fileversion\space dbvthesis class]
+
+\def\BaseClass{scrbook}
+
+%%%%%%%%%%%%%%% Option Part %%%%%%%%%%%%%%%%%%%%
+\RequirePackage{ifthen}
+
+\DeclareOption{11pt}{\def\@fontsize{1}}
+\DeclareOption{12pt}{\def\@fontsize{2}}
+
+\DeclareOption{english}{\def\@language{english}}
+\DeclareOption{german}{\def\@language{german}}
+\DeclareOption{ngerman}{\def\@language{ngerman}}
+\def\engl{english}
+
+\ifx \@language\engl
+\ExecuteOptions{english} \ProcessOptions
+\else
+\ExecuteOptions{german} \ProcessOptions
+\fi
+
+\newif\ifpredefineddeclaration
+\DeclareOption{predefineddeclaration}{\predefineddeclarationtrue}
+
+\DeclareOption*{\PassOptionsToClass{\CurrentOption}{\BaseClass}}
+\ProcessOptions\relax
+
+%%%%%%%%%%%%%%% Option Part End %%%%%%%%%%%%%%%%
+
+    \LoadClass[1\@fontsize pt,a4paper,\@language,twoside,openright,listof=totoc,bibliography=totoc,headings=twolinechapter,numbers=noenddot]{\BaseClass}[1997/04/16]
+
+    \RequirePackage{setspace}
+    \onehalfspacing
+
+    \RequirePackage{graphicx}
+
+    \def\dbvthesisTitlepageAndDeclaration{
+
+	\bgroup
+	\def\baselinestretch{1.0}%
+
+	\def\Title##1{\def\title{##1}} \def\title{}
+	\def\Subtitle##1{\def\subtitle{##1}} \def\subtitle{}
+	\def\ThesisType##1{\def\thesisType{##1}} \def\thesisType{}
+
+	\def\FirstName##1{\def\firstName{##1}} \def\firstName{}
+	\def\LastName##1{\def\lastName{##1}} \def\lastName{}
+	\def\DateOfBirth##1##2##3{
+	    \ifx \@language\engl \def\dateOfBirth{\ifcase##2\or January\or February\or March\or April\or May\or June\or July\or August\or September\or October\or November\or December\fi \space
+						  \ifcase##1\or 1\or 2\or 3\or 4 \or 5\or 6\or 7\or 8\or 9\else ##1\fi ,~##3} 
+	    \else \def\dateOfBirth{##1.##2.##3}
+	    \fi	} \def\dateOfBirth{}
+	\def\Birthplace##1{\def\birthplace{##1}} \def\birthplace{}
+
+	\def\Supervisor##1{\def\supervisor{##1}} \def\supervisor{}
+	\def\Advisor##1{\def\advisor{##1}} \def\advisor{}
+
+	\def\ThesisStart##1##2##3{
+	    \ifx \@language\engl \def\thesisStart{\ifcase##2\or January\or February\or March\or April\or May\or June\or July\or August\or September\or October\or November\or December\fi \space
+						  \ifcase##1\or 1\or 2\or 3\or 4 \or 5\or 6\or 7\or 8\or 9\else ##1\fi ,~##3} 
+	    \else \def\thesisStart{##1.##2.##3}
+	    \fi 
+	} \def\thesisStart{}
+
+	\def\ThesisEnd##1##2##3{
+	    \ifx \@language\engl \def\thesisEnd{\ifcase##2\or January\or February\or March\or April\or May\or June\or July\or August\or September\or October\or November\or December\fi \space
+						\ifcase##1\or 1\or 2\or 3\or 4 \or 5\or 6\or 7\or 8\or 9\else ##1\fi ,~##3} 
+	    \else \def\thesisEnd{##1.##2.##3}
+	    \fi
+	    \def\declarationDate{##1.~\ifcase##2\or Januar\or Februar\or M\"arz\or April\or Mai\or Juni\or Juli\or August\or September\or Oktober\or November\or Dezember\fi \space##3}
+	} {\def\thesisEnd{} \def\declarationDate{}}
+
+	\def\SecondInstitute##1{\def\secondInstitute{##1}} \def\secondInstitute{}
+
+    }
+
+    \ifx \@language\engl
+
+	\def\chair{Computer Vision Group}
+	\def\department{Department of Mathematics and Computer Science}
+	\def\university{Friedrich-Schiller-Universit\"at Jena}
+
+	\def\supervisorText{Supervisor:}
+	\def\advisorText{Advisor:}
+
+	\def\thesisStartText{Started:}
+	\def\thesisEndText{Finished:}
+
+    \else
+
+	\def\chair{Lehrstuhl f\"ur Digitale Bildverarbeitung}
+	\def\department{Fakult\"at f\"ur Mathematik und Informatik}
+	\def\university{Friedrich-Schiller-Universit\"at Jena}
+
+	\def\supervisorText{Gutachter:}
+	\def\advisorText{Betreuer:}
+
+	\def\thesisStartText{Beginn der Arbeit:}
+	\def\thesisEndText{Ende der Arbeit:}
+
+    \fi
+
+    \def\enddbvthesisTitlepageAndDeclaration{%
+
+	\addtolength{\oddsidemargin}{1cm}
+	\enlargethispage{4cm}
+
+	{ % titlepage
+	  \thispagestyle{empty}
+
+	  \vfill
+
+	  \begin{center}
+	    \ifx \@language\engl \includegraphics[width=50mm]{images/UniJena_BildWortMarke_black.pdf} \else \includegraphics[width=50mm]{images/UniJena_BildWortMarke_black.pdf} \fi
+	    \vfill
+	    {\Huge \textbf{\title} \\}
+	    \onehalfspacing
+	    \ifx \subtitle\empty \else \textbf{\Large \subtitle \\} \fi
+	    \vfill
+	    \textbf{\large \thesisType \ifx \@language\engl \ in Computer Science \else \ im Fach Informatik \fi}
+	    \vfill
+	    \normalsize
+	    \ifx \@language\engl submitted by \else vorgelegt von \fi \\
+	    \textbf{\firstName~\lastName} \\
+	    \textbf{\ifx \@language\engl born~\dateOfBirth~in~\birthplace \else geboren~am~\dateOfBirth~in~\birthplace \fi} \\
+	    \vfill
+	    \ifx \@language\engl written at \else angefertigt am \fi \\
+	    \textbf{\chair \\ \department \\ \university} \\
+	    \ifx \secondInstitute\empty \else \vfill \ifx \@language\engl in cooperation with \else in Zusammenarbeit mit \fi \\ \textbf{\secondInstitute} \\ \fi
+	  \end{center}
+
+	  \vfill
+
+	  \begin{flushleft}
+	      \begin{tabular}{ll}
+		\ifx \supervisor\empty \else  \supervisorText & \supervisor \\ \fi
+		\advisorText & \advisor \\
+		\thesisStartText & \thesisStart \\
+		\thesisEndText & \thesisEnd \\
+	      \end{tabular}
+	  \end{flushleft}
+      
+	  \vfill
+	}
+
+	\cleardoublepage
+
+	\addtolength{\oddsidemargin}{-1cm}
+	
+	\ifpredefineddeclaration
+
+	    \setcounter{page}{1}
+
+	    \begin{center}{\sectfont\LARGE Eigenst{\"a}ndigkeitserkl{\"a}rung}\end{center}
+		  \begin{enumerate}
+		  	\small
+		  	\item[1.] Hiermit versichere ich, dass ich die vorliegende Arbeit - bei einer Gruppenarbeit die von mir zu verantwortenden und entsprechend gekennzeichneten Teile - selbstst{\"a}ndig verfasst und keine anderen als die angegebenen Quellen und Hilfsmittel benutzt habe.
+        Ich trage die Verantwortung f{\"u}r die Qualität des Textes sowie die Auswahl aller Inhalte und habe sichergestellt, dass Informationen und Argumente mit geeigneten wissenschaftlichen Quellen belegt bzw. gest{\"u}tzt werden.
+        Die aus fremden oder auch eigenen, {\"a}lteren Quellen w{\"o}rtlich oder sinngem{\"a}{\ss} übernommenen Textstellen, Gedankengänge, Konzepte, Grafiken etc. in meinen Ausf{\"u}hrungen habe ich als solche eindeutig gekennzeichnet und mit vollst{\"a}ndigen Verweisen auf die jeweilige Quelle versehen.
+        Alle weiteren Inhalte dieser Arbeit ohne entsprechende Verweise stammen im urheberrechtlichen Sinn von mir.
+
+        \item[2.] Ich wei{\ss}, dass meine Eigenst{\"a}ndigkeitserkl{\"a}rung sich auch auf nicht zitierf{\"a}hige, generierende KI-Anwendungen (nachfolgend „generierende KI“) bezieht.
+        Mir ist bewusst, dass die Verwendung von generierender KI unzul{\"a}ssig ist, sofern nicht deren Nutzung von der pr{\"u}fenden Person ausdr{\"u}cklich freigegeben wurde (Freigabeerkl{\"a}rung).
+        Sofern eine Zulassung als Hilfsmittel erfolgt ist, versichere ich, dass ich mich generierender KI lediglich als Hilfsmittel bedient habe und in der vorliegenden Arbeit mein gestalterischer Einfluss deutlich {\"u}berwiegt.
+        Ich verantworte die {\"U}bernahme der von mir verwendeten maschinell generierten Passagen in meiner Arbeit vollumf{\"a}nglich selbst.
+        Für den Fall der Freigabe der Verwendung von generierender KI für die Erstellung der vorliegenden Arbeit wird eine Verwendung in einem gesonderten Anhang meiner Arbeit kenntlich gemacht.
+        Dieser Anhang enth{\"a}lt eine Angabe oder eine detaillierte Dokumentation über die Verwendung generierender KI gem{\"a}{\ss} den Vorgaben in der Freigabeerkl{\"a}rung der pr{\"u}fenden Person.
+        Die Details zum Gebrauch generierender KI bei der Erstellung der vorliegenden Arbeit inklusive Art, Ziel und Umfang der Verwendung sowie die Art der Nachweispflicht habe ich der Freigabeerkl{\"a}rung der pr{\"u}fenden Person entnommen.
+
+        \item[3.] Ich versichere des Weiteren, dass die vorliegende Arbeit bisher weder im In- noch im Ausland in gleicher oder {\"a}hnlicher Form einer anderen Pr{\"u}fungsbeh{\"o}rde vorgelegt wurde oder in deutscher oder einer anderen Sprache als Ver{\"o}ffentlichung erschienen ist.
+
+        \item[4.] Mir ist bekannt, dass ein Verstoß gegen die vorbenannten Punkte pr{\"u}fungsrechtliche Konsequenzen haben und insbesondere dazu f{\"u}hren kann, dass meine Pr{\"u}fungsleistung als T{\"a}uschung und damit als mit \glqq nicht bestanden\grqq{} bewertet werden kann.
+        Bei mehrfachem oder schwerwiegendem T{\"a}uschungsversuch kann ich befristet oder sogar dauerhaft von der Erbringung weiterer Pr{\"u}fungsleistungen in meinem Studiengang ausgeschlossen werden.
+		  
+        \item[5.] Die Richtlinien des Lehrstuhls f{\"u}r Examensarbeiten habe ich gelesen und anerkannt.
+		    Seitens des Verfassers/der Verfasserin bestehen keine Einw{\"a}nde, die vorliegende Examensarbeit f{\"u}r die {\"o}ffentliche Benutzung zur Verf{\"u}gung zu stellen.
+		  \end{enumerate}
+		
+		\vspace{.6cm}
+		\noindent
+		Jena, den \declarationDate \hfill \firstName~\lastName
+
+		\cleardoublepage
+
+	\else
+
+		\include{declaration}
+
+	\fi
+
+	\egroup
+    }
+
+    \ifx \@language\engl
+    \IfFileExists{babel.sty}
+    {\RequirePackage[\@language]{babel}[1997/01/23] }
+    {\IfFileExists{english.sty}
+      {\RequirePackage{english}[1997/05/01]}
+      {\ClassError{dbvthesis}
+	{Neither babel nor english.sty installed !!!}
+	{Get babel or english.sty !!!}}}
+    \else
+    \IfFileExists{babel.sty}
+      {\RequirePackage[\@language]{babel}[1997/01/23]}
+      {\ClassError{dbvthesis}
+	{Babel not installed !!!}
+	{Get babel package !!!}}
+    \fi
+
+\endinput
+%%
+%% End of file `dbvthesis.cls'.

+ 30 - 0
declaration.tex

@@ -0,0 +1,30 @@
+\begin{center}{\sectfont\LARGE Eigenst{\"a}ndigkeitserkl{\"a}rung}\end{center}
+\begin{enumerate}
+	\small
+	\item[1.] Hiermit versichere ich, dass ich die vorliegende Arbeit - bei einer Gruppenarbeit die von mir zu verantwortenden und entsprechend gekennzeichneten Teile - selbstst{\"a}ndig verfasst und keine anderen als die angegebenen Quellen und Hilfsmittel benutzt habe.
+    Ich trage die Verantwortung f{\"u}r die Qualität des Textes sowie die Auswahl aller Inhalte und habe sichergestellt, dass Informationen und Argumente mit geeigneten wissenschaftlichen Quellen belegt bzw. gest{\"u}tzt werden.
+    Die aus fremden oder auch eigenen, {\"a}lteren Quellen w{\"o}rtlich oder sinngem{\"a}{\ss} übernommenen Textstellen, Gedankengänge, Konzepte, Grafiken etc. in meinen Ausf{\"u}hrungen habe ich als solche eindeutig gekennzeichnet und mit vollst{\"a}ndigen Verweisen auf die jeweilige Quelle versehen.
+    Alle weiteren Inhalte dieser Arbeit ohne entsprechende Verweise stammen im urheberrechtlichen Sinn von mir.
+
+    \item[2.] Ich wei{\ss}, dass meine Eigenst{\"a}ndigkeitserkl{\"a}rung sich auch auf nicht zitierf{\"a}hige, generierende KI-Anwendungen (nachfolgend „generierende KI“) bezieht.
+    Mir ist bewusst, dass die Verwendung von generierender KI unzul{\"a}ssig ist, sofern nicht deren Nutzung von der pr{\"u}fenden Person ausdr{\"u}cklich freigegeben wurde (Freigabeerkl{\"a}rung).
+    Sofern eine Zulassung als Hilfsmittel erfolgt ist, versichere ich, dass ich mich generierender KI lediglich als Hilfsmittel bedient habe und in der vorliegenden Arbeit mein gestalterischer Einfluss deutlich {\"u}berwiegt.
+    Ich verantworte die {\"U}bernahme der von mir verwendeten maschinell generierten Passagen in meiner Arbeit vollumf{\"a}nglich selbst.
+    Für den Fall der Freigabe der Verwendung von generierender KI für die Erstellung der vorliegenden Arbeit wird eine Verwendung in einem gesonderten Anhang meiner Arbeit kenntlich gemacht.
+    Dieser Anhang enth{\"a}lt eine Angabe oder eine detaillierte Dokumentation über die Verwendung generierender KI gem{\"a}{\ss} den Vorgaben in der Freigabeerkl{\"a}rung der pr{\"u}fenden Person.
+    Die Details zum Gebrauch generierender KI bei der Erstellung der vorliegenden Arbeit inklusive Art, Ziel und Umfang der Verwendung sowie die Art der Nachweispflicht habe ich der Freigabeerkl{\"a}rung der pr{\"u}fenden Person entnommen.
+
+    \item[3.] Ich versichere des Weiteren, dass die vorliegende Arbeit bisher weder im In- noch im Ausland in gleicher oder {\"a}hnlicher Form einer anderen Pr{\"u}fungsbeh{\"o}rde vorgelegt wurde oder in deutscher oder einer anderen Sprache als Ver{\"o}ffentlichung erschienen ist.
+
+    \item[4.] Mir ist bekannt, dass ein Verstoß gegen die vorbenannten Punkte pr{\"u}fungsrechtliche Konsequenzen haben und insbesondere dazu f{\"u}hren kann, dass meine Pr{\"u}fungsleistung als T{\"a}uschung und damit als mit \glqq nicht bestanden\grqq{} bewertet werden kann.
+    Bei mehrfachem oder schwerwiegendem T{\"a}uschungsversuch kann ich befristet oder sogar dauerhaft von der Erbringung weiterer Pr{\"u}fungsleistungen in meinem Studiengang ausgeschlossen werden.
+		  
+    \item[5.] Die Richtlinien des Lehrstuhls f{\"u}r Examensarbeiten habe ich gelesen und anerkannt.
+	Seitens des Verfassers/der Verfasserin bestehen Einw{\"a}nde, die vorliegende Examensarbeit f{\"u}r die {\"o}ffentliche Benutzung zur Verf{\"u}gung zu stellen.
+\end{enumerate}
+		
+\vspace{.6cm}
+\par \noindent
+Jena, den 01. Januar 2050 \hfill  Richard Roe
+
+\cleardoublepage

+ 45 - 0
header.tex

@@ -0,0 +1,45 @@
+% file header.tex
+%
+% You may want to use these packages or edit some options
+% Feel free to insert more packages, if you need them
+
+\usepackage[utf8]{inputenc}
+
+% some usefull packages, if you do not need them, comment them out
+\usepackage{babel}
+\usepackage{amsfonts}
+\usepackage{amsmath}
+\usepackage{amssymb}
+\usepackage{amsthm}
+\usepackage{graphicx}
+\usepackage[hang]{caption}
+\usepackage{subcaption}
+\usepackage{booktabs}
+\usepackage{makeidx}
+%\usepackage{subfigure}
+\usepackage{xcolor}
+
+\usepackage{array}
+\usepackage[
+    plainpages=false,
+    pdfpagelayout=TwoPageRight,
+    pdfborder={0 0 0},
+    hyperfootnotes=false
+  ]{hyperref}
+
+\usepackage{longtable} % for tables larger than one page
+\usepackage{pdflscape} % for pages in landscape format
+\usepackage{rotating} % for rotated tables on landscape pages using sidewaystable
+\usepackage{booktabs}
+\usepackage{multirow}
+\usepackage{tabularx}
+
+% footnote packages
+\usepackage{footnote}
+\usepackage{chngcntr}% necessary for next command
+\counterwithout{footnote}{chapter}% consecutive numbering of footnotes throughout the whole document, no renumeration in each chapter
+
+\usepackage{setspace}
+\onehalfspacing
+
+

BIN
images/UniJena_BildWortMarke_black.eps


BIN
images/UniJena_BildWortMarke_black.pdf


+ 8 - 0
macros.tex

@@ -0,0 +1,8 @@
+%your own macros, abbreviations, etc.
+
+\newcommand\todo[1]{\textcolor{red}{TODO: #1}}
+\newcommand\fixme[1]{\textcolor{green}{FIXME: #1}}
+
+\newcommand\ie{\textit{i.e.}\xspace}
+\newcommand\eg{\textit{e.g.}\xspace}
+\newcommand\etal{\textit{et al.}\xspace}

+ 15 - 0
thesis.bbl

@@ -0,0 +1,15 @@
+\begin{thebibliography}{DR12}
+
+% this bibliography is generated by alphadin.bst [8.2] from 2005-12-21
+
+\providecommand{\url}[1]{\texttt{#1}}
+\expandafter\ifx\csname urlstyle\endcsname\relax
+  \providecommand{\doi}[1]{doi: #1}\else
+  \providecommand{\doi}{doi: \begingroup \urlstyle{rm}\Url}\fi
+
+\bibitem[DR12]{Doe12:TIA}
+\textsc{Doe}, John ; \textsc{Roe}, Richard:
+\newblock This is an example.
+\newblock {In: }\emph{Proceedings of the {IEEE} Conference}, 2012, S. 1--8
+
+\end{thebibliography}

+ 11 - 0
thesis.bib

@@ -0,0 +1,11 @@
+@INPROCEEDINGS{Doe12:TIA,
+  author = {John Doe and Richard Roe},
+  title = {This is an example},
+  booktitle = {Proceedings of the {IEEE} Conference},
+  year = {2012},
+  pages = {1--8},
+  abstract = {Such a nice abstract},
+  keywords = {insert keywords},
+  review = {some comments},
+  timestamp = {2012.01.03}
+}

+ 10 - 0
thesis.loa

@@ -0,0 +1,10 @@
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\addvspace {10\p@ }
+\addvspace {10\p@ }

BIN
thesis.pdf


+ 141 - 0
thesis.tex

@@ -0,0 +1,141 @@
+%%%%% Explanation of class options
+%
+% predefineddeclaration: if you use option predefineddeclaration, a predefined declaration (always in German!) will be automatically included between titlepage and abstract using \FirstName, \LastName, \ThesisEnd, 
+% 			(1) if you do not use this option, the file "declaration.tex" will be included automatically between titlepage and abstract instead
+%       (2) if you do not agree to make your thesis publicly available, you CAN NOT USE this option, but have to use "declaration.tex" instead
+%       (3) "declaration.tex" needs to be modified manually with respect to name and date!
+%
+% additional options will be passed to the base class "scrbook"
+%
+%%%%% End of explanations
+\documentclass[11pt, english, predefineddeclaration, BCOR=10mm]{dbvthesis}
+\usepackage{blindtext}
+
+\input{header.tex} % put all the required packages and stuff in file header.tex
+\input{macros.tex} % define your own abbreviations,commands, etc. in file macros.tex
+
+% widow and club penalty
+\widowpenalty = 10000
+\clubpenalty = 10000
+\displaywidowpenalty = 10000
+
+\renewcommand{\labelenumii}{\theenumii}
+\renewcommand{\theenumii}{\theenumi.\arabic{enumii}.}
+
+\begin{document}
+
+\pagenumbering{Roman}
+
+\begin{dbvthesisTitlepageAndDeclaration}
+
+  % Specify the title and a possible subtitle of your thesis, if you do not have a subtitle, comment the Subtitle command out
+  \Title{This is the title of my thesis, maybe a very long one} % mandatory
+  \Subtitle{It is possible, that the subtitle is also too long for a single line} % optional
+
+  \ThesisType{Bachelor Thesis}
+
+  \FirstName{Phillip}
+  \LastName{Rothenbeck}
+  \DateOfBirth{22}{02}{2002}
+  \Birthplace{Eckernf{\"o}rde}
+
+  % Specify names of your supervisor and advisor(s): you can either split into supervisor and advisor or name everybody in the advisor command. in the last case, comment the supervisor command out
+  \Supervisor{Prof. Dr.-Ing. Joachim Denzler} % optional
+  \Advisor{Niklas Penzel, Sai Karthikeya Vemuri} % mandatory
+
+  % Specify start and end of your thesis
+  \ThesisStart{01}{05}{2024}
+  \ThesisEnd{14}{09}{2024}
+
+\end{dbvthesisTitlepageAndDeclaration}
+
+40 pages in total
+\begin{enumerate}
+  \item Introduction | 5
+        \begin{enumerate}
+          \item Introduction / Motivation | 3
+          \item Related Work | 2
+        \end{enumerate}
+  \item Background | 18
+        \begin{enumerate}
+          \item Theory | 15
+                \begin{enumerate}
+                  \item Domains | 1
+                  \item Differential Equations | 1
+                  \item Multilayer Perceptron | 2
+                  \item Physics Informed Neural Networks | 5
+                        \begin{enumerate}
+                          \item Forward Problem | 3
+                          \item Backward Problem | 2
+                        \end{enumerate}
+                  \item SIR Model | 2
+                  \item Desease Informed Neural Networks | 2
+                  \item reduced SIR Model | 2
+                \end{enumerate}
+          \item RKI Data | 3
+        \end{enumerate}
+  \item Methods | 4
+        \begin{enumerate}
+          \item Data Preprocessing | 3
+          \item Recovery Queue | 1
+        \end{enumerate}
+  \item Experiments | 10
+        \begin{enumerate}
+          \item SIR Model | 5
+                \begin{enumerate}
+                  \item Setup | 1
+                  \item Results | 4
+                \end{enumerate}
+          \item reduced SIR Model | 5
+                \begin{enumerate}
+                  \item Setup | 1
+                  \item Results | 4
+                \end{enumerate}
+        \end{enumerate}
+  \item Conclusions | 3
+  \item Further Work
+\end{enumerate}
+
+\include{./abstract}
+
+\tableofcontents
+\cleardoublepage
+\pagenumbering{arabic}
+
+\include{./chapters/chap01-introduction/chap01-introduction}
+%--------------------------------------------------
+%--------------------------------------------------
+\include{./chapters/chap02/chap02}
+%--------------------------------------------------
+%--------------------------------------------------
+\include{./chapters/chap03/chap03}
+%--------------------------------------------------
+%--------------------------------------------------
+\include{./chapters/chap04/chap04}
+%--------------------------------------------------
+%--------------------------------------------------
+% include more chapters if you want or have to
+%--------------------------------------------------
+%--------------------------------------------------
+\include{./chapters/conclusions/conclusions}
+%--------------------------------------------------
+%--------------------------------------------------
+\include{./chapters/furtherWork/furtherWork}
+%--------------------------------------------------
+%--------------------------------------------------
+
+\appendix
+
+% if you do not have appendix sections, comment this include command out
+\include{./chapters/appendix/appendix}
+
+\singlespacing
+
+\interlinepenalty10000 % so no bib-entry will be separated by a pagebreak
+\bibliography{thesis.bib}
+\bibliographystyle{alphadin} % change the bib-style if you want to
+
+\listoffigures
+\listoftables
+
+\end{document}