-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathThesis.tex
executable file
·70 lines (58 loc) · 2.34 KB
/
Thesis.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
%% ----------------------------------------------------------------
%% Thesis.tex -- main
%% ----------------------------------------------------------------
\documentclass[a4paper, 10pt, oneside]{memoir}
%% Use the option citeauthor to be able to use citet. The default cite will still work.
\usepackage[citeauthor]{basilea}
%% ----------------------------------------------------------------
\title {Thesis Title}
\thesistype {Thesis Type (e.g., Bachelor/Master thesis/project)}
\department {Department (e.g., Department of Mathematics and Computer Science)}
\faculty {Faculty (e.g., Natural Science Faculty of the University of Basel)}
\research {Research Group \\ Webpage}
\examiner {Examiner (e.g., Prof. Dr. Alan Turing)}
\supervisor {Supervisor (e.g., Advisor, MSc.)}
\authors {Author(s)}
\email {E-Mail}
\immatriculnr {0000-000-000}
\date {Hand-In-Date}
% switch here for the german logo to logo-de
\ulogo {Template/logo-en}
%% ----------------------------------------------------------------
\begin{document}
% for english use \selectlanguage{english}, for german use \selectlanguage{ngerman}
\selectlanguage{english}
\thesisfront
\maketitle
\pagestyle{thesis}
%% ----------------------------------------------------------------
% \input{./Front/Acknowledgment}
%% ----------------------------------------------------------------
\input{./Front/Abstract}
%% ----------------------------------------------------------------
\thesistoc
%% ----------------------------------------------------------------
%\thesisnomencl
%% ----------------------------------------------------------------
\thesismain
\input{./Chapters/Chapter1}
\input{./Chapters/Chapter2}
\input{./Chapters/Chapter3}
%\input{./Chapters/Chapter4}
%\input{./Chapters/Chapter5}
%\input{./Chapters/Chapter6}
%\input{./Chapters/Chapter7}
%% ----------------------------------------------------------------
\thesisappendix
\thesisbib
\begin{appendices}
\input{./Back/AppendixA}
\end{appendices}
%% ----------------------------------------------------------------
\thesisback
\iflanguage{english}
{\includepdf{./Back/wissensch_Redlichkeit_E_09-2023.pdf}}
{\includepdf{./Back/wissensch_Redlichkeit_D_09-2023.pdf}}
%% ----------------------------------------------------------------
\end{document}
%% ----------------------------------------------------------------