64 lines
1.5 KiB
TeX
64 lines
1.5 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}
|
|
|
|
\usepackage{pgfgantt}
|
|
\usepackage{rotating}
|
|
|
|
% https://tex.stackexchange.com/a/24827
|
|
\makeatletter
|
|
\def\input@path{{documentation/thesis/content}}
|
|
\makeatother
|
|
|
|
\begin{document}
|
|
|
|
\frontmatter
|
|
|
|
\title{Inductive Short-Range Communication Channel}
|
|
\author{Severin Kaderli}
|
|
\institution{Bern University of Applied Sciences}
|
|
\department{Engineering and Computer Science }
|
|
\version{0.0.1}
|
|
\advisor{Dr. Reto König}
|
|
\expert{Thomas Jäggi}
|
|
\degreeprogram{Bachelor of Science in Computer Science}
|
|
|
|
|
|
%---------------- BFH tile page -----------------------------------------
|
|
\maketitle
|
|
\input{00_abstract.tex}
|
|
|
|
|
|
%------------ TABLEOFCONTENTS ----------------
|
|
\tableofcontents
|
|
|
|
%------------ START MAIN PART ----------------
|
|
\mainmatter
|
|
|
|
\input{01_introduction.tex}
|
|
\input{02_preliminaries.tex}
|
|
\input{03_use_cases_personas.tex}
|
|
\input{04_requirements.tex}
|
|
\input{05_solution.tex}
|
|
\input{06_testing.tex}
|
|
\input{07_benchmarking.tex}
|
|
\input{08_materials_methods.tex}
|
|
\input{09_future_work.tex}
|
|
\input{10_project_management.tex}
|
|
|
|
\appendix
|
|
\chapter{First appendix Chapter}
|
|
\end{document}
|