Files
bachelor_thesis/30_Thesis/thesis.tex
hannes.kuchelmeister 92a242c913 set document to final
2020-05-09 14:42:15 +02:00

222 lines
5.3 KiB
TeX
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
%% LaTeX2e class for student theses
%% thesis.tex
%%
%% Karlsruhe Institute of Technology
%% Institute for Program Structures and Data Organization
%% Chair for Software Design and Quality (SDQ)
%%
%% Dr.-Ing. Erik Burger
%% burger@kit.edu
%%
%% See https://sdqweb.ipd.kit.edu/wiki/Dokumentvorlagen
%%
%% {$HeadURL: https://svnserver.informatik.kit.edu/i43/svn/lehre/Abschlussarbeiten-Vorlage/thesis.tex $}
%% {$LastChangedDate: 2018-08-02 14:19:06 +0200 (Do, 02 Aug 2018) $}
%% {$LastChangedRevision: 5705 $}
%% {$LastChangedBy: burger $}
%% Available page modes: oneside, twoside
%% Available modes: draft, final (see README)
\documentclass[twoside, english, final]{sdqthesis}
%% ---------------------------------
%% | Information about the thesis |
%% ---------------------------------
%% Name of the author
\author{Hannes F. Kuchelmeister}
%% Title (and possibly subtitle) of the thesis
\title{Decision Support for Group-Based Configuration using Recommender Systems}
%% Type of the thesis
\thesistype{Bachelor's Thesis}
%% Change the institute here, ``IPD'' is default
% \myinstitute{Institute for \dots}
%% You can put a logo in the ``logos'' directory and include it here
%% instead of the SDQ logo
% \grouplogo{myfile}
%% Alternatively, you can disable the group logo
\nogrouplogo
%% The reviewers are the professors that grade your thesis
\reviewerone{Prof. Dr. Ralf H. Reussner}
\reviewertwo{Prof. Dr. Christof Weinhardt}
%% The advisors are PhDs or Postdocs
\advisorone{Dr. rer. nat. Robert Heinrich}
%% The second advisor can be omitted
\advisortwo{M.A. Jonas Fegert}
%% Please enter the start end end time of your thesis
\usepackage{texdate}
\initdate{2019}{12}{16}
\editingtime{
\printfdate{british}
\advancebydays{31}
\advancebymonths{3}
}{
\regressbydays{1}
\advancebydays{27} % corona automatic extension (34 days) - 7 days earlier hand in
\printfdate{british}
}
\settitle
%% --------------------------------
%% | Settings for word separation |
%% --------------------------------
%% Describe separation hints here.
%% For more details, see
%% http://en.wikibooks.org/wiki/LaTeX/Text_Formatting#Hyphenation
\hyphenation{
% me-ta-mo-del
}
%% --------------------------------
%% | Ref Hypothesis |
%% --------------------------------
\newcommand{\hypothesisautorefname}{Hypothesis}
%% --------------------
%% | Float Barriers |
%% --------------------
\usepackage{placeins}
%% --------------------
%% | Table Packages |
%% --------------------
\usepackage{tabularx}
\newcolumntype{C}{>{\centering\arraybackslash}X}
\usepackage{multirow}
%% --------------------
%% | Maths Packages |
%% --------------------
\usepackage{amsmath}
\usepackage{amssymb}
%% --------------------
%% | Plotting Packages |
%% --------------------
\usepackage{pgfplots}
%% ---------------------
%% | Generating Frames |
%% ---------------------
\usepackage[framemethod=TikZ]{mdframed}
\newcounter{hypo}
\mdtheorem[
nobreak=true,
linecolor=gray!60,
linewidth=1pt,
frametitlebackgroundcolor=gray!20,
frametitlefont=\sffamily\bfseries\color{black},
]{hypothesis}{Hypothesis}
%% --------------------------------
%% | PDF Comments |
%% --------------------------------
\usepackage[colorinlistoftodos, obeyDraft]{todonotes}
%% --------------------------------
%% | Gantt Charts |
%% --------------------------------
\usepackage{pgfgantt}
%% --------------------------------
%% | Quotation |
%% --------------------------------
\usepackage{csquotes}
\MakeOuterQuote{"}
%% --------------------------------
%% | Bibliography |
%% --------------------------------
%% Use biber instead of BibTeX, see README
\usepackage[citestyle=numeric,style=numeric,sorting=none,backend=biber]{biblatex}
\addbibresource{thesis.bib}
%% --------------------------------
%% | File Inputs |
%% --------------------------------
\usepackage{texosquery}
%% ====================================
%% ====================================
%% || ||
%% || Beginning of the main document ||
%% || ||
%% ====================================
%% ====================================
\begin{document}
%% Set PDF metadata
\setpdf
%% Set the title
\maketitle
%% The Preamble begins here
\frontmatter
\input{sections/declaration.tex}
\setcounter{page}{1}
\pagenumbering{roman}
%% ----------------
%% | Abstract |
%% ----------------
%% For theses written in English, an abstract both in English
%% and German is mandatory.
%%
%% For theses written in German, a German abstract is sufficient.
%%
%% The text is included from the following files:
%% - sections/abstract
\includeabstract
%% ------------------------
%% | Table of Contents |
%% ------------------------
\tableofcontents
\listoffigures
\listoftables
%% -----------------
%% | Main part |
%% -----------------
\mainmatter
\input{sections/00_introduction.tex}
\input{sections/10_foundations.tex}
\input{sections/20_related_work.tex}
\input{sections/40_concept.tex}
\input{sections/50_design_and_implementation.tex}
\input{sections/60_evaluation.tex}
\input{sections/80_conclusion.tex}
%% --------------------
%% | Bibliography |
%% --------------------
%% Add entry to the table of contents for the bibliography
\printbibliography[heading=bibintoc]
\end{document}