-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
139 lines (91 loc) · 5.17 KB
/
main.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
137
138
139
%% Template basiert auf der Vorlage der Uni Graz für VWA: https://latex.tugraz.at/vorlagen/allgemein
%% Versionen:
%% V1: 9. Augugst 2021 (GreiA)
%% V2 25.September 2021 (GreiA) : Fehler mit oldfonts bei der bibtex-Erstellung
\input{template/main_settings}
%% ========================================================================
%% Document metadata: DIESE WERTE BITTE ANPASSEN, wie werden dann automatisch auf der
%% Titelseite angezeigt
%% ========================================================================
\newcommand{\mytitle}{TITLE}
\newcommand{\mysubtitle}{SUBTITITLE}
\newcommand{\myinstitute}{Abteilung für Wirtschaftsingenieure/Betriebsinformatik}
\newcommand{\mysubmissionyear}{2022} %% Einreich - Jahr
\newcommand{\mysubmissionmonth}{April} %% Monat der Einreichung
\newcommand{\myauthor}{AUTOR1\\AUTOR2} %% Autoren. Bitte mit \\ Trennen wenn mehrere
\newcommand{\mysupervisor}{BETREUER1\\BETREUER2} %%Betreuer. Bitte mit \\ Trennen wenn mehrere
\newcommand{\myprojectpartner}{Vollständige Bezeichnung der Firma} %% Partnerfirma
\newcommand{\mysubject}{SUBJECT} %% also used for PDF metadata (hyperref)
\newcommand{\mykeywords}{KEYWORDS} %% also used for PDF metadata (hyperref)
%% header settings
\usepackage{lastpage}
\ohead{\headmark }
\ihead*{\includegraphics[width=3cm]{figures/htl-logo}}
%\ifoot{\thepage} %Will man Anzahl Seiten: /\pageref{LastPage}
\ofoot{\myauthor}
%% ========================================================================
%%%% MISC command definitions
%% ========================================================================
\input{template/mycommands}
%% ========================================================================
%%%% Typographic settings
%% ========================================================================
\input{template/typographic_settings}
\input{template/listing_format}
%% ========================================================================
%%%% MISC usepackages
%% ========================================================================
%% ... it's OK to put here your own usepackage commands ...
%% ========================================================================
%%%% MISC self-defined commands and settings
%% ========================================================================
%% ... it's OK to put here your own newcommand/newenvironment-definitions ...
\hyphenation{ex-am-ple hy-phen-ate} %% in order to use German umlauts
%% here (Ver-\"of-fent-li-chung), you have to check for
%% activated \usepackage[T1]{fontenc} in the preamble
%% override default language of babel: (be sure to know, what you're
%% doing here)
%\selectlanguage{american}
\selectlanguage{ngerman}
%% ========================================================================
%% bibtex für die Literaturverwaltung: Hier wird der Zitier-Stil festgelegt
%% ========================================================================
\usepackage{natbib} %
\bibliographystyle{agsm}
\input{template/pdf_settings} %% should be *last* definitions in preamble!
%% ========================================================================
%%%% begin{document}
%% ========================================================================
\begin{document}
\frontmatter %% KOMA: roman page numbers and such; only available in scrbook
%% \input{colophon} %% defines information about editor, LaTeX, font, ...
%% Choose your desired title page:
\input{\mytitlepage} %% include title page
\input{template/lock_flag} % Wenn kein Sperrvermerk gemacht werden soll, dann diesen Import einfach auskommentieren
%%\input{template/declaration_TU_Graz} %% Statutory Declaration
% \input{thanks} %% this is a suggestion: you have to create this file on demand
% \input{foreword} %% this is a suggestion: you have to create this file on demand
%% include the abstract without chapter number but include it on table of contents:
%%\let\cleardoublepage\clearpage
\phantomsection
\addcontentsline{toc}{chapter}{Abstract}
\include{content/abstract} %% Abstract
\input{template/affirmation} %%EIDESSTATTLICHE ERKLÄRUNG
\tableofcontents %% this produces the table of contents - you might have guessed :-)
%% if myaddlistoftodos is set to "true", the current list of open todos is added:
\ifthenelse{\boolean{myaddlistoftodos}}{
\newpage\listoftodos %% handy if you are using todonotes with \todo{}
}{} %% with todonotes-package option "disable" you can get rid of any todo in the output
\mainmatter %% KOMA: marks main part using arabic page numbers and such; only available in scrbook
%% HIER DIE EIGENEN KAPITEL EINFÜGEN
\input{content/einleitung}
\input{content/latex_beispiele} % Einfach auskommentieren für die tatsächliche Arbeit
\input{content/mathematik}
\appendix %% closes main document, appendix follows until end; only available in book-classes
\addpart*{Appendix} %% adding Appendix to tableofcontents
\listoftables
\listoffigures
\lstlistoflistings
\nocite{*} %Es werden auch nicht referenzierte Literaturstellen aufgelistet
\bibliography{references}
\end{document}