From 4d7099d587e2910a64dff50d9e9e00cd60856879 Mon Sep 17 00:00:00 2001 From: Severin Kaderli Date: Sat, 3 Sep 2022 18:22:50 +0200 Subject: [PATCH] Prepare thesis document Signed-off-by: Severin Kaderli --- .gitignore | 1 + build.sh | 2 + documentation/thesis/00_abstract.tex | 2 + documentation/thesis/thesis.tex | 55 ++++++++++++++++++++++++++++ 4 files changed, 60 insertions(+) create mode 100644 .gitignore create mode 100755 build.sh create mode 100644 documentation/thesis/00_abstract.tex create mode 100644 documentation/thesis/thesis.tex diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..69fa449 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +_build/ diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..b2fee3d --- /dev/null +++ b/build.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env sh +latexmk -pdflatex=lualatex -pdf -output-directory=_build documentation/thesis/thesis.tex diff --git a/documentation/thesis/00_abstract.tex b/documentation/thesis/00_abstract.tex new file mode 100644 index 0000000..c393af1 --- /dev/null +++ b/documentation/thesis/00_abstract.tex @@ -0,0 +1,2 @@ +\addchap{Abstract} +Here an abstract might be placed. diff --git a/documentation/thesis/thesis.tex b/documentation/thesis/thesis.tex new file mode 100644 index 0000000..5faee94 --- /dev/null +++ b/documentation/thesis/thesis.tex @@ -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}