-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoku.tex
106 lines (81 loc) · 3.38 KB
/
doku.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
% !TeX document-id = {33927989-231d-43eb-85c8-eaa173529330}
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
%
% LaTex Documentation Template
%
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% "THE BEER-WARE LICENSE" (Revision 42):
% Hannes Badertscher (hbaderts@hsr.ch) wrote this file. As long as you retain
% this notice you can do whatever you want with this stuff. If we meet some day,
% and you think this stuff is worth it, you can buy me a beer in return.
% - Hannes Badertscher
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% !TeX program = pdflatex
% !BIB program = biber
% !TeX encoding = utf8
% !TeX spellcheck = en
\RequirePackage[l2tabu, orthodox]{nag} % Warnings for obsolete packages
\RequirePackage{etex} % Load extended TeX
\RequirePackage[utf8]{inputenc} % Use UTF-8 as input encoding
% Document information
\newcommand*{\Lang} {en} % document language: de or en
\newcommand*{\Supervisor} {Prof. Stefan Keller}
\newcommand*{\Experte} {}
\newcommand*{\BetreuerA} {Nicola Jordan}
\newcommand*{\BetreuerB} {}
\newcommand*{\AuthorA} {Conradin Kleinstein}
\newcommand*{\AuthorAMatrikel} {18-151-332}
\newcommand*{\AuthorB} {Marco Fuchs}
\newcommand*{\AuthorBMatrikel} {18-156-703}
\newcommand*{\schoolDE} {OST - Ostschweizer Fachhochschule}
\newcommand*{\schoolEN} {OST - Eastern Switzerland University of Applied Sciences}
\newcommand*{\ModulInfo} {Seminar Database Systems}
\newcommand*{\Title} {Database Change Management Techniques\\by the Example of PostgreSQL}
\newcommand*{\Subtitle} {}
\newcommand*{\Studiengang} {Master of Science in Engineering}
\newcommand*{\Profile} {Profile Data Science}
\newcommand*{\Semester} {Fall Semester 2022/2023}
\newcommand*{\Subject} {}
\newcommand*{\ThesisNr} {}
\newcommand*{\Keywords} {}
\newcommand*{\IsConfidential} {true}
\newcommand*{\Place} {St. Gallen}
\newcommand*{\TitleImage} {} % leave empty for no title image :frontmatter/Titelbild_bsp.jpg
\newcommand*{\Print} {true} % true for black links (print version), false for color links (pdf version)
% main header file
\include{header/header}
\input{frontmatter/glossary.tex}
\bibliography{frontmatter/bibliograpy.bib}
\setlength{\textheight}{644pt}
% % % % % % % % % % % % % %
\begin{document}
% Frontmatter
\pagenumbering{roman}
\include{frontmatter/titlepage}
\include{frontmatter/abstract}
\tableofcontents
% Main part
\cleardoublepage
\pagenumbering{arabic}
\include{chapters/introduction/introduction}
\include{chapters/intro_flyway/intro_flyway}
\include{chapters/intro_liquibase/intro_liquibase}
\include{chapters/scenarios/scenarios}
\include{chapters/flyway_vs_liquibase/flyway_vs_liquibase}
\include{chapters/discussion/discussion}
% \include{chapters/outlook/outlook}
\include{chapters/mse_exercise/mse_exercise}
% Bibliography
\cleardoublepage
\chapter*{Bibliography}
\addcontentsline{toc}{chapter}{Bibliography}
\printbibliography[heading=none]
% Appendix
\glsaddall
\printglossary
\include{appendices/appendix}
%\include{chapters/Beispiel/Beispiel}
%\include{chapters/cheatsheet/cheatsheet}
%\include{chapters/questions/questions}
\end{document}
% % % % % % % % % % % % % %