55 lines
1.3 KiB
TeX
55 lines
1.3 KiB
TeX
%============================ 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}
|