Prepare thesis document

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2022-09-03 18:22:50 +02:00
parent 14b7fd56a9
commit 4d7099d587
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
4 changed files with 60 additions and 0 deletions

View file

@ -0,0 +1,55 @@
%============================ MAIN DOCUMENT ================================
% define document class
\documentclass[
a4paper % paper format
% ,10.5pt % fontsize
% ,BCOR=18mm % Binding correction
,bibliography=totoc % If enabled add bibliography to TOC
,listof=totoc % If enabled add lists to TOC
% ,bilingual
,monolingual
]{bfhthesis} % KOMA-script report
\usepackage[
hidelinks,
pdfusetitle,
]{hyperref}
% https://tex.stackexchange.com/a/24827
\makeatletter
\def\input@path{{documentation/thesis/}}
\makeatother
\begin{document}
\frontmatter
\title{Bachelor's Thesis}
\subtitle{Thesis subject}
\author{Severin Kaderli}
\institution{Bern University of Applied Sciences}
\department{Engineering and Computer Science }
\version{0.0.1}
\titlegraphic{\includegraphics[width=\width]{example-image}}
\advisor{Dr. Reto König}
\expert{Some expert}
\degreeprogram{Bachelor of Science in Computer Science}
\titlegraphic{}
%---------------- BFH tile page -----------------------------------------
\maketitle
\input{00_abstract.tex}
%------------ TABLEOFCONTENTS ----------------
\tableofcontents
%------------ START MAIN PART ----------------
\mainmatter
\chapter{First chapter of the main part}
\appendix
\chapter{First appendix Chapter}
\end{document}