-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
136 lines (104 loc) · 3.08 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
%% LaTeX2e class for student theses
%% thesis.tex
%%
%% Karlsruhe Institute of Technology
%% Institute for Program Structures and Data Organization
%% Chair for Software Design and Quality (SDQ)
%%
%% Dr.-Ing. Erik Burger
%%
%% See https://sdq.kastel.kit.edu/wiki/Dokumentvorlagen
%%
%% Version 1.4, 2023-06-19
%% Available page modes: oneside, twoside
%% Available languages: english, ngerman
%% Available modes: draft, final (see README)
\documentclass[twoside, english]{sdqthesis}
%% ---------------------------------
%% | Information about the thesis |
%% ---------------------------------
%% Name of the author
\author{My Name}
%% Title (and possibly subtitle) of the thesis
\title{Title of the Thesis}
%% Type of the thesis
\thesistype{Master's Thesis/Bachelor's Thesis}
%% Change the institute here, ``KASTEL'' is default
% \myinstitute{Institute for \dots}
%% You can put a logo in the ``logos'' directory and include it here
%% instead of the SDQ logo
% \grouplogo{myfile}
%% Alternatively, you can disable the group logo
% \nogrouplogo
%% The reviewers are the professors that grade your thesis
\reviewerone{Prof. A}
\reviewertwo{Prof. B}
%% The advisors are PhDs or Postdocs
\advisorone{M.Sc. C}
%% The second advisor can be omitted
\advisortwo{M.Sc. D}
%% Please enter the start end end time of your thesis
\editingtime{xx. Month 20XX}{xx. Month 20XX}
\settitle
%% --------------------------------
%% | Bibliography |
%% --------------------------------
%% Use biber instead of BibTeX, see README
\usepackage[citestyle=numeric,style=numeric,backend=biber]{biblatex}
\addbibresource{thesis.bib}
%% For example texts -- please remove in the final version
\usepackage{blindtext}
%% ====================================
%% ====================================
%% || ||
%% || Beginning of the main document ||
%% || ||
%% ====================================
%% ====================================
\begin{document}
%% Set PDF metadata
\setpdf
%% Set the title
\maketitle
%% The Preamble begins here
\frontmatter
\input{sections/declaration.tex}
\setcounter{page}{1}
\pagenumbering{roman}
%% ----------------
%% | Abstract |
%% ----------------
%% For theses written in English, an abstract both in English
%% and German is mandatory.
%%
%% For theses written in German, a German abstract is sufficient.
%%
%% The text is included from the following files:
%% - sections/abstract
\includeabstract
%% ------------------------
%% | Table of Contents |
%% ------------------------
\tableofcontents
%\listoffigures
%\listoftables
%% -----------------
%% | Main part |
%% -----------------
\mainmatter
\input{sections/introduction.tex}
\input{sections/content.tex}
\input{sections/evaluation.tex}
\input{sections/conclusion.tex}
%% --------------------
%% | Bibliography |
%% --------------------
%% Add entry to the table of contents for the bibliography
\printbibliography[heading=bibintoc]
%% ----------------
%% | Appendix |
%% ----------------
\appendix
\input{sections/appendix.tex}
\end{document}