-
Notifications
You must be signed in to change notification settings - Fork 0
/
_thesis.tex
65 lines (50 loc) · 2.48 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
%%% File encoding: UTF-8
%%% äöüÄÖÜß <-- keine deutschen Umlaute hier? UTF-faehigen Editor verwenden!
\documentclass[foo,german]{hgbthesis}
% Zulässige Class Options:
% Typ der Arbeit: diplom, master (default), bachelor, praktikum
% Hauptsprache: german (default), english
%%%----------------------------------------------------------
\RequirePackage[utf8]{inputenc} % Bei der Verw. von lualatex oder xelatex entfernen!
\graphicspath{{images/}} % Abbildungsverzeichnis
\logofile{} % Name des Logo-PDFs in images/ (\logofile{}, wenn kein Logo gewünscht)
\bibliography{literatur} % Name der Biblatex-Literaturdatei (.bib)
%%%----------------------------------------------------------
% Angaben für die Titelei (Titelseite, Erklärung etc.)
%%%----------------------------------------------------------
%%% Einträge für ALLE Arbeiten: -----------------------------
\title{Linux on z; Was unterscheidet Linux on z zu einem Linux auf x86}
\author{Timo Furrer}
\studiengang{Mainframe Topics Blockwoche}
\studienort{Hochschule Luzern}
\abgabedatum{2017}{10}{11} % {YYYY}{MM}{DD}
%%% Restriktive Lizenformel anstatt CC (nur für Typ master) -
%\strictlicense
%%%----------------------------------------------------------
\begin{document}
%%%----------------------------------------------------------
%%%----------------------------------------------------------
\frontmatter % Titelei (röm. Seitenzahlen)
%%%----------------------------------------------------------
\maketitle
\tableofcontents
%%%----------------------------------------------------------
\mainmatter % Hauptteil (ab hier arab. Seitenzahlen)
%%%----------------------------------------------------------
\include{chapters/einleitung}
\include{chapters/linux}
\include{chapters/linux_on_z}
\include{chapters/difference}
\include{chapters/schluss}
%%%----------------------------------------------------------
\appendix % Anhang
%%%----------------------------------------------------------
%%%----------------------------------------------------------
\MakeBibliography % Quellenverzeichnis
\listoffigures % Abbildungsverzeichnis
%%%----------------------------------------------------------
%%% Messbox zur Druckkontrolle ------------------------------
\include{back/messbox}
%%%----------------------------------------------------------
\end{document}
%%%----------------------------------------------------------