Prepare thesis document
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
parent
14b7fd56a9
commit
4d7099d587
4 changed files with 60 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
_build/
|
2
build.sh
Executable file
2
build.sh
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
latexmk -pdflatex=lualatex -pdf -output-directory=_build documentation/thesis/thesis.tex
|
2
documentation/thesis/00_abstract.tex
Normal file
2
documentation/thesis/00_abstract.tex
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
\addchap{Abstract}
|
||||||
|
Here an abstract might be placed.
|
55
documentation/thesis/thesis.tex
Normal file
55
documentation/thesis/thesis.tex
Normal 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}
|
Reference in a new issue