-
Notifications
You must be signed in to change notification settings - Fork 0
/
twbook.cls
989 lines (923 loc) · 40.1 KB
/
twbook.cls
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
%%
%% This is file `twbook.cls',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% twbook.dtx (with options: `class')
%%
%% Dies ist ein automatisch generierter File
%%
%% Diese Klasse dient der Definition einer einheitlichen Corporate Identity an der FH Technikum Wien.
%% Die genaue Beschreibung entnehmen Sie bitte der beigelegten Dokumentation twbook.pdf.
%% Diese wurde ebenso automatisch generiert.
%%
%% Aktuelle Version der Datei: cae46ed Richard Otrebski 2020-12-10 19:40:13 +0100
%%
%% Copyright (C) 2014-2015 Richard Otrebski
%% <[email protected]>
%% Copyright (C) 2013 Dr. Andreas Drauschke
%% <[email protected]>
%%
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{twbook}[2013/03/25 v0.03 Standard LaTeX Dokumenten-Klasse fuer Dokumente der FH Technikum Wien]
\newcommand{\sprache}{english}
\DeclareOption{german}{\renewcommand*{\sprache}{german}}
\DeclareOption{ngerman}{\renewcommand*{\sprache}{ngerman}}
\DeclareOption{english}{\renewcommand*{\sprache}{english}}
\newcommand{\institution}{Technikum}
\newcommand{\degreecourse}{TW}
\DeclareOption{ACADEMY}{\renewcommand*{\degreecourse}{Academy}%
\renewcommand*{\institution}{Academy}}
\DeclareOption{BBE}{\renewcommand*{\degreecourse}{BBE}}
\DeclareOption{BEE}{\renewcommand*{\degreecourse}{BEE}}
\DeclareOption{BEL}{\renewcommand*{\degreecourse}{BEL}}
\DeclareOption{BEW}{\renewcommand*{\degreecourse}{BEW}}
\DeclareOption{BHF}{\renewcommand*{\degreecourse}{BHF}}
\DeclareOption{BIC}{\renewcommand*{\degreecourse}{BIC}}
\DeclareOption{BIF}{\renewcommand*{\degreecourse}{BIF}}
\DeclareOption{BIW}{\renewcommand*{\degreecourse}{BIW}}
\DeclareOption{BMB}{\renewcommand*{\degreecourse}{BMB}}
\DeclareOption{BMR}{\renewcommand*{\degreecourse}{BMR}}
\DeclareOption{BSA}{\renewcommand*{\degreecourse}{BSA}}
\DeclareOption{BWI}{\renewcommand*{\degreecourse}{BWI}}
\DeclareOption{LAA}{\renewcommand*{\degreecourse}{LAA}}
\DeclareOption{LAM}{\renewcommand*{\degreecourse}{LAM}}
\DeclareOption{LAZ}{\renewcommand*{\degreecourse}{LAZ}}
\DeclareOption{LBA}{\renewcommand*{\degreecourse}{LBA}}
\DeclareOption{LBD}{\renewcommand*{\degreecourse}{LBD}}
\DeclareOption{LBM}{\renewcommand*{\degreecourse}{LBM}}
\DeclareOption{LDA}{\renewcommand*{\degreecourse}{LDA}}
\DeclareOption{LDZ}{\renewcommand*{\degreecourse}{LDZ}}
\DeclareOption{LMD}{\renewcommand*{\degreecourse}{LMD}}
\DeclareOption{LPA}{\renewcommand*{\degreecourse}{LPA}}
\DeclareOption{LPC}{\renewcommand*{\degreecourse}{LPC}}
\DeclareOption{LPE}{\renewcommand*{\degreecourse}{LPE}}
\DeclareOption{LPJ}{\renewcommand*{\degreecourse}{LPJ}}
\DeclareOption{LPM}{\renewcommand*{\degreecourse}{LPM}}
\DeclareOption{LPP}{\renewcommand*{\degreecourse}{LPP}}
\DeclareOption{LPW}{\renewcommand*{\degreecourse}{LPW}}
\DeclareOption{LRA}{\renewcommand*{\degreecourse}{LRA}}
\DeclareOption{LRM}{\renewcommand*{\degreecourse}{LRM}}
\DeclareOption{LRZ}{\renewcommand*{\degreecourse}{LRZ}}
\DeclareOption{LUE}{\renewcommand*{\degreecourse}{LUE}}
\DeclareOption{LUM}{\renewcommand*{\degreecourse}{LUM}}
\DeclareOption{LUX}{\renewcommand*{\degreecourse}{LUX}}
\DeclareOption{LZA}{\renewcommand*{\degreecourse}{LZA}}
\DeclareOption{LZM}{\renewcommand*{\degreecourse}{LZM}}
\DeclareOption{LZZ}{\renewcommand*{\degreecourse}{LZZ}}
\DeclareOption{MCS}{\renewcommand*{\degreecourse}{MCS}}
\DeclareOption{MDS}{\renewcommand*{\degreecourse}{MDS}}
\DeclareOption{MEE}{\renewcommand*{\degreecourse}{MEE}}
\DeclareOption{MES}{\renewcommand*{\degreecourse}{MES}}
\DeclareOption{MGR}{\renewcommand*{\degreecourse}{MGR}}
\DeclareOption{MGS}{\renewcommand*{\degreecourse}{MGS}}
\DeclareOption{MIW}{\renewcommand*{\degreecourse}{MIW}}
\DeclareOption{MLE}{\renewcommand*{\degreecourse}{MLE}}
\DeclareOption{MMB}{\renewcommand*{\degreecourse}{MMB}}
\DeclareOption{MME}{\renewcommand*{\degreecourse}{MME}}
\DeclareOption{MMR}{\renewcommand*{\degreecourse}{MMR}}
\DeclareOption{MSC}{\renewcommand*{\degreecourse}{MSC}}
\DeclareOption{MSE}{\renewcommand*{\degreecourse}{MSE}}
\DeclareOption{MST}{\renewcommand*{\degreecourse}{MST}}
\DeclareOption{MTE}{\renewcommand*{\degreecourse}{MTE}}
\DeclareOption{MTI}{\renewcommand*{\degreecourse}{MTI}}
\DeclareOption{MTM}{\renewcommand*{\degreecourse}{MTM}}
\DeclareOption{MUT}{\renewcommand*{\degreecourse}{MUT}}
\DeclareOption{MWI}{\renewcommand*{\degreecourse}{MWI}}
\newcommand{\doctype}{}
\newcommand{\doctypeprint}{}
\DeclareOption{Bachelor}{\renewcommand*{\doctype}{BACHELORARBEIT}}
\DeclareOption{Master}{\renewcommand*{\doctype}{MASTERARBEIT}}
\DeclareOption{Seminar}{\renewcommand*{\doctype}{SEMINARARBEIT}}
\DeclareOption{Projekt}{\renewcommand*{\doctype}{PROJEKTBERICHT}}
\DeclareOption{Praktikum}{\renewcommand*{\doctype}{PRAKTIKUMSBERICHT}}
\DeclareOption{Labor}{\renewcommand*{\doctype}{LABORPROTOKOLL}}
\newcommand{\cover}{PICs/TW}
\ProcessOptions\relax
\LoadClass[a4paper,fontsize=11pt,twoside=false,%
headings=normal,toc=listof,listof=entryprefix,%
listof=nochaptergap,bibliography=totoc,%
numbers=noendperiod]{scrbook}
\RequirePackage{scrhack}
\RequirePackage{color,xcolor}
\RequirePackage{xifthen}
\RequirePackage{ifpdf}
\RequirePackage{ifdraft}
\RequirePackage{wallpaper}
\RequirePackage{palatino}
\RequirePackage{scrlfile}
\ReplacePackage{scrpage2}{scrlayer-scrpage}
\RequirePackage{scrlayer-scrpage}
\RequirePackage{acronym}
\RequirePackage{amsmath,amssymb,amsfonts,amstext}
\RequirePackage[\sprache]{babel}
\Ifstr{\sprache}{ngerman}
{%
%ngerman
%change \sprache to german to translate everything else; babel's already loaded
\renewcommand*{\sprache}{german}
}%
{%
%german & english
%Do nothing; everything's fine
}%
\RequirePackage{array}
\RequirePackage{tikz}
\usetikzlibrary{external}
\RequirePackage{caption}
\DeclareCaptionLabelSeparator{periodcolon}{.: }
\captionsetup{labelsep=colon}
\renewcommand*{\figureformat}{\figurename~\thefigure}
\renewcommand*{\tableformat}{\tablename~\thetable}
\RequirePackage{iftex}
\ifPDFTeX
% PDFLaTeX
\ifpdf
\RequirePackage[pdftex]{hyperref}
\RequirePackage{graphicx}
\else
\RequirePackage[dvips]{hyperref}
\RequirePackage[dvips]{graphicx}
\fi
\else
\ifXeTeX
% XeTeX
\RequirePackage{hyperref}
\RequirePackage{graphicx}
\else
\ifLuaTeX
% LuaTeX
\RequirePackage{hyperref}
\RequirePackage{graphicx}
\else
% Some obscure Engine!
\ClassError{twbook}{%
The TeX-Engine you are using is not supported!\MessageBreak%
Try a different Engine!\Messagebreak%
Maybe PDFTeX, XeTeX or LuaTeX!
}{%
Something is wrong with the Tex-Engine you are using.\MessageBreak%
We don't support that one!}
\fi
\fi
\fi
\RequirePackage{bookmark}
\providecommand*{\@noopterr}[1]{}
\renewcommand*{\@noopterr}[1]{%
\PackageWarning{babel}%
{You haven't loaded the option #1\space yet.\MessageBreak%
Rerun to set the right option.\MessageBreak%
Sie haben die Option #1\space aktuell nicht geladen.\MessageBreak%
Kompilieren Sie noch einmal um die korrekte Option zu setzen}}
\definecolor{TWgreen}{RGB}{140,177,16}
\definecolor{TWblue}{RGB}{0,101,156}
\definecolor{TWgray}{RGB}{113,120,125}
\hypersetup{colorlinks=true, linkcolor=black, linkbordercolor=white,%
citecolor=black, citebordercolor=white,%
filecolor=black, filebordercolor=white,%
urlcolor=TWblue, urlbordercolor=white}
\urlstyle{sf}
\addtocounter{tocdepth}{0}
\addtokomafont{pagenumber}{\sffamily}
\pagestyle{scrheadings}
\clearmainofpairofpagestyles
\ihead[]{}
\chead[]{}
\ohead[]{}
\ifoot[]{}
\cfoot[]{}
\ofoot[\footnotesize\pagemark]{\footnotesize\pagemark}
\renewcommand*{\chapterpagestyle}{plain}
\@removefromreset{figure}{chapter}
\@removefromreset{table}{chapter}
\@removefromreset{equation}{chapter}
\renewcommand*{\theequation}{\protect\small\arabic{equation}\protect\normalsize}
\renewcommand*{\thefigure}{\protect\small\arabic{figure}\protect\normalsize}
\renewcommand*{\thetable}{\protect\small\arabic{table}\protect\normalsize}
\setkomafont{caption}{\protect\small}
\setkomafont{captionlabel}{\protect\small}
\renewcommand*{\extrarowheight}{3pt}
\addtolength{\textheight}{5\baselineskip}
\addtolength{\textwidth}{38pt}
\setlength{\headheight}{1.3\baselineskip}
\renewcommand*{\baselinestretch}{1.21% \changes{v0.3}{2013/03/24}{Dokumentation implementiert}
}
\sloppy\tolerance=10000
\Ifstr{\doctype}{}
{
\addtolength{\oddsidemargin}{-33pt}
\addtolength{\evensidemargin}{-33pt}
\setkomafont{chapter}{\color{TWblue}\mdseries\Huge}
\setkomafont{section}{\color{TWblue}\mdseries\huge}
\setkomafont{subsection}{\color{TWblue}\mdseries\Large}
\setkomafont{subsubsection}{\bfseries\normalsize}}
{
\addtolength{\oddsidemargin}{-19pt}
\addtolength{\evensidemargin}{-19pt}
\setkomafont{chapter}{\mdseries\huge}
\setkomafont{section}{\mdseries\LARGE}
\setkomafont{subsection}{\mdseries\Large}
\setkomafont{subsubsection}{\bfseries\normalsize}}
\renewcommand*\chapter{\par\global\@topnum\z@\@afterindentfalse%
\secdef\@chapter\@schapter}
\Ifstr{\sprache}{english}{%
\Ifstr{\doctype}{BACHELORARBEIT}{%
\renewcommand*{\doctype}{BACHELORTHESIS}}{}
\Ifstr{\doctype}{MASTERARBEIT}{%
\renewcommand*{\doctype}{MASTERTHESIS}}{}
\Ifstr{\doctype}{SEMINARARBEIT}{%
\renewcommand*{\doctype}{SEMINAR PAPER}}{}
\Ifstr{\doctype}{PROJEKTBERICHT}{%
\renewcommand*{\doctype}{PROJECT REPORT}}{}
\Ifstr{\doctype}{PRAKTIKUMSBERICHT}{%
\renewcommand*{\doctype}{INTERNSHIP REPORT}}{}
\Ifstr{\doctype}{Laborbericht}{%
\renewcommand*{\doctype}{LABORATORY REPORT}}}{}
\renewcommand*{\doctypeprint}{\doctype}
\Ifstr{\doctypeprint}{MASTERTHESIS}{%
\renewcommand*{\doctypeprint}{MASTER THESIS}}{}
\Ifstr{\doctypeprint}{BACHELORTHESIS}{%
\renewcommand*{\doctypeprint}{BACHELOR PAPER}}{}
\Ifstr{\sprache}{german}{%
\Ifstr{\degreecourse}{BBE}{\renewcommand*{\cover}{PICs/BBE}%
\renewcommand*{\degreecourse}{Biomedical Engineering}}{}
\Ifstr{\degreecourse}{BEE}{\renewcommand*{\cover}{PICs/BEE}%
\renewcommand*{\degreecourse}{Urbane Erneuerbare Energietechnologien}}{}
\Ifstr{\degreecourse}{BEL}{\renewcommand*{\cover}{PICs/BEL}%
\renewcommand*{\degreecourse}{Elektronik}}{}
\Ifstr{\degreecourse}{BEW}{\renewcommand*{\cover}{PICs/BEW}%
\renewcommand*{\degreecourse}{Elektronik/Wirtschaft}}{}
\Ifstr{\degreecourse}{BHF}{\renewcommand*{\cover}{PICs/BHF}%
\renewcommand*{\degreecourse}{Human Factors and Sports Engineering}}{}
\Ifstr{\degreecourse}{BIC}{\renewcommand*{\cover}{PICs/BIC}%
\renewcommand*{\degreecourse}{Informations- und Kommunikationssysteme}}{}
\Ifstr{\degreecourse}{BIF}{\renewcommand*{\cover}{PICs/BIF}%
\renewcommand*{\degreecourse}{Informatik/Computer Science}}{}
\Ifstr{\degreecourse}{BIW}{\renewcommand*{\cover}{PICs/BIW}%
\renewcommand*{\degreecourse}{Internationales Wirtschaftsingenieurwesen}}{}
\Ifstr{\degreecourse}{BMB}{\renewcommand*{\cover}{PICs/BMB}%
\renewcommand*{\degreecourse}{Maschinenbau}}{}
\Ifstr{\degreecourse}{BMR}{\renewcommand*{\cover}{PICs/BMR}%
\renewcommand*{\degreecourse}{Mechatronik/Robotik}}{}
\Ifstr{\degreecourse}{BSA}{\renewcommand*{\cover}{PICs/BSA}%
\renewcommand*{\degreecourse}{Smart Homes und Assistive Technologien}}{}
\Ifstr{\degreecourse}{BWI}{\renewcommand*{\cover}{PICs/BWI}%
\renewcommand*{\degreecourse}{Wirtschaftsinformatik}}{}
\Ifstr{\degreecourse}{LAA}{\renewcommand*{\cover}{PICs/LAA}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Software Quality Assurance Management}}{}
\Ifstr{\degreecourse}{LAM}{\renewcommand*{\cover}{PICs/LAM}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Software Quality Assurance Management}}{}
\Ifstr{\degreecourse}{LAZ}{\renewcommand*{\cover}{PICs/LAZ}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Software Quality Assurance Management}}{}
\Ifstr{\degreecourse}{LBA}{\renewcommand*{\cover}{PICs/LBA}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Business Development and Transformation}}{}
\Ifstr{\degreecourse}{LBD}{\renewcommand*{\cover}{PICs/LBD}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Business Development and Transformation}}{}
\Ifstr{\degreecourse}{LBM}{\renewcommand*{\cover}{PICs/LBM}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Business Development and Transformation}}{}
\Ifstr{\degreecourse}{LDA}{\renewcommand*{\cover}{PICs/LDA}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Digital Business}}{}
\Ifstr{\degreecourse}{LDZ}{\renewcommand*{\cover}{PICs/LDZ}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Digital Business}}{}
\Ifstr{\degreecourse}{LMD}{\renewcommand*{\cover}{PICs/LMD}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Digital Business}}{}
\Ifstr{\degreecourse}{LPA}{\renewcommand*{\cover}{PICs/LPA}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{App-Development}}{}
\Ifstr{\degreecourse}{LPC}{\renewcommand*{\cover}{PICs/LPC}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Pre College Program}}{}
\Ifstr{\degreecourse}{LPE}{\renewcommand*{\cover}{PICs/LPE}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Pre College Program Extended}}{}
\Ifstr{\degreecourse}{LPJ}{\renewcommand*{\cover}{PICs/LPJ}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Projekt- und Prozessmanagement}}{}
\Ifstr{\degreecourse}{LPM}{\renewcommand*{\cover}{PICs/LPM}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Projekt- und Prozessmanagement}}{}
\Ifstr{\degreecourse}{LPP}{\renewcommand*{\cover}{PICs/LPP}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Projekt- und Prozessmanagement}}{}
\Ifstr{\degreecourse}{LPW}{\renewcommand*{\cover}{PICs/LPW}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Web-Development}}{}
\Ifstr{\degreecourse}{LRA}{\renewcommand*{\cover}{PICs/LRA}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Rolling Stock Engineering}}{}
\Ifstr{\degreecourse}{LRM}{\renewcommand*{\cover}{PICs/LRM}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Rolling Stock Engineering}}{}
\Ifstr{\degreecourse}{LRZ}{\renewcommand*{\cover}{PICs/LRZ}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Rolling Stock Engineering}}{}
\Ifstr{\degreecourse}{LUE}{\renewcommand*{\cover}{PICs/LUE}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{User Experience Management}}{}
\Ifstr{\degreecourse}{LUM}{\renewcommand*{\cover}{PICs/LUM}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{User Experience Management}}{}
\Ifstr{\degreecourse}{LUX}{\renewcommand*{\cover}{PICs/LUX}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{User Experience Management}}{}
\Ifstr{\degreecourse}{LZA}{\renewcommand*{\cover}{PICs/LZA}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Engineering Management}}{}
\Ifstr{\degreecourse}{LZM}{\renewcommand*{\cover}{PICs/LZM}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Engineering Management}}{}
\Ifstr{\degreecourse}{LZZ}{\renewcommand*{\cover}{PICs/LZZ}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Engineering Management}}{}
\Ifstr{\degreecourse}{MCS}{\renewcommand*{\cover}{PICs/MCS}%
\renewcommand*{\degreecourse}{IT-Security}}{}
\Ifstr{\degreecourse}{MDS}{\renewcommand*{\cover}{PICs/MDS}%
\renewcommand*{\degreecourse}{Data Science}}{}
\Ifstr{\degreecourse}{MEE}{\renewcommand*{\cover}{PICs/MEE}%
\renewcommand*{\degreecourse}{Erneuerbare Urbane Energiesysteme}}{}
\Ifstr{\degreecourse}{MES}{\renewcommand*{\cover}{PICs/MES}%
\renewcommand*{\degreecourse}{Embedded Systems}}{}
\Ifstr{\degreecourse}{MGR}{\renewcommand*{\cover}{PICs/MGR}%
\renewcommand*{\degreecourse}{Gesundheits- und Rehabilitationstechnik}}{}
\Ifstr{\degreecourse}{MGS}{\renewcommand*{\cover}{PICs/MGS}%
\renewcommand*{\degreecourse}{Game Engineering und Simulation}}{}
\Ifstr{\degreecourse}{MIW}{\renewcommand*{\cover}{PICs/MIW}%
\renewcommand*{\degreecourse}{Internationales Wirtschaftsingenieurwesen}}{}
\Ifstr{\degreecourse}{MLE}{\renewcommand*{\cover}{PICs/MLE}%
\renewcommand*{\degreecourse}{Leistungselektronik}}{}
\Ifstr{\degreecourse}{MMB}{\renewcommand*{\cover}{PICs/MMB}%
\renewcommand*{\degreecourse}{Maschinenbau}}{}
\Ifstr{\degreecourse}{MME}{\renewcommand*{\cover}{PICs/MME}%
\renewcommand*{\degreecourse}{Medical Engineering \& eHealth}}{}
\Ifstr{\degreecourse}{MMR}{\renewcommand*{\cover}{PICs/MMR}%
\renewcommand*{\degreecourse}{Mechatronik/Robotik}}{}
\Ifstr{\degreecourse}{MSC}{\renewcommand*{\cover}{PICs/MSC}%
\renewcommand*{\degreecourse}{Integrative Stadtentwicklung - Smart City}}{}
\Ifstr{\degreecourse}{MSE}{\renewcommand*{\cover}{PICs/MSE}%
\renewcommand*{\degreecourse}{Software Engineering}}{}
\Ifstr{\degreecourse}{MST}{\renewcommand*{\cover}{PICs/MST}%
\renewcommand*{\degreecourse}{Sports Technology}}{}
\Ifstr{\degreecourse}{MTE}{\renewcommand*{\cover}{PICs/MTE}%
\renewcommand*{\degreecourse}{Tissue Engineering and Regenerative Medicine}}{}
\Ifstr{\degreecourse}{MTI}{\renewcommand*{\cover}{PICs/MTI}%
\renewcommand*{\degreecourse}{Telekommunikation und Internettechnologien}}{}
\Ifstr{\degreecourse}{MTM}{\renewcommand*{\cover}{PICs/MTM}%
\renewcommand*{\degreecourse}{Innovations- und Technologiemanagement}}{}
\Ifstr{\degreecourse}{MUT}{\renewcommand*{\cover}{PICs/MUT}%
\renewcommand*{\degreecourse}{Technisches Umweltmanagement und {\"O}kotoxikologie}}{}
\Ifstr{\degreecourse}{MWI}{\renewcommand*{\cover}{PICs/MWI}%
\renewcommand*{\degreecourse}{Wirtschaftsinformatik}}{}
}{}
\Ifstr{\sprache}{english}{%
\Ifstr{\degreecourse}{BBE}{\renewcommand*{\cover}{PICs/BBE}%
\renewcommand*{\degreecourse}{Biomedical Engineering}}{}
\Ifstr{\degreecourse}{BEE}{\renewcommand*{\cover}{PICs/BEE}%
\renewcommand*{\degreecourse}{Renewable Energies}}{}
\Ifstr{\degreecourse}{BEL}{\renewcommand*{\cover}{PICs/BEL}%
\renewcommand*{\degreecourse}{Elektronic Engineering}}{}
\Ifstr{\degreecourse}{BEW}{\renewcommand*{\cover}{PICs/BEW}%
\renewcommand*{\degreecourse}{Elektronics and business}}{}
\Ifstr{\degreecourse}{BHF}{\renewcommand*{\cover}{PICs/BHF}%
\renewcommand*{\degreecourse}{Human Factors and Sports Engineering}}{}
\Ifstr{\degreecourse}{BIC}{\renewcommand*{\cover}{PICs/BIC}%
\renewcommand*{\degreecourse}{Information and Communication Systems and Services}}{}
\Ifstr{\degreecourse}{BIF}{\renewcommand*{\cover}{PICs/BIF}%
\renewcommand*{\degreecourse}{Computer Science}}{}
\Ifstr{\degreecourse}{BIW}{\renewcommand*{\cover}{PICs/BIW}%
\renewcommand*{\degreecourse}{International Business and Engineering}}{}
\Ifstr{\degreecourse}{BMB}{\renewcommand*{\cover}{PICs/BMB}%
\renewcommand*{\degreecourse}{Mechanical Engineering}}{}
\Ifstr{\degreecourse}{BMR}{\renewcommand*{\cover}{PICs/BMR}%
\renewcommand*{\degreecourse}{Mechatronics/Robotics}}{}
\Ifstr{\degreecourse}{BSA}{\renewcommand*{\cover}{PICs/BSA}%
\renewcommand*{\degreecourse}{Smart Homes and Assistive Technologies}}{}
\Ifstr{\degreecourse}{BWI}{\renewcommand*{\cover}{PICs/BWI}%
\renewcommand*{\degreecourse}{Business Informatics}}{}
\Ifstr{\degreecourse}{LAA}{\renewcommand*{\cover}{PICs/LAA}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Software Quality Assurance Management}}{}
\Ifstr{\degreecourse}{LAM}{\renewcommand*{\cover}{PICs/LAM}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Software Quality Assurance Management}}{}
\Ifstr{\degreecourse}{LAZ}{\renewcommand*{\cover}{PICs/LAZ}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Software Quality Assurance Management}}{}
\Ifstr{\degreecourse}{LBA}{\renewcommand*{\cover}{PICs/LBA}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Business Development and Transformation}}{}
\Ifstr{\degreecourse}{LBD}{\renewcommand*{\cover}{PICs/LBD}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Business Development and Transformation}}{}
\Ifstr{\degreecourse}{LBM}{\renewcommand*{\cover}{PICs/LBM}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Business Development and Transformation}}{}
\Ifstr{\degreecourse}{LDA}{\renewcommand*{\cover}{PICs/LDA}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Digital Business}}{}
\Ifstr{\degreecourse}{LDZ}{\renewcommand*{\cover}{PICs/LDZ}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Digital Business}}{}
\Ifstr{\degreecourse}{LMD}{\renewcommand*{\cover}{PICs/LMD}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Digital Business}}{}
\Ifstr{\degreecourse}{LPA}{\renewcommand*{\cover}{PICs/LPA}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{App-Development}}{}
\Ifstr{\degreecourse}{LPC}{\renewcommand*{\cover}{PICs/LPC}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Pre College Program}}{}
\Ifstr{\degreecourse}{LPE}{\renewcommand*{\cover}{PICs/LPE}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Pre College Program Extended}}{}
\Ifstr{\degreecourse}{LPJ}{\renewcommand*{\cover}{PICs/LPJ}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Projekt- und Prozessmanagement}}{}
\Ifstr{\degreecourse}{LPM}{\renewcommand*{\cover}{PICs/LPM}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Projekt- und Prozessmanagement}}{}
\Ifstr{\degreecourse}{LPP}{\renewcommand*{\cover}{PICs/LPP}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Projekt- und Prozessmanagement}}{}
\Ifstr{\degreecourse}{LPW}{\renewcommand*{\cover}{PICs/LPW}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Web-Development}}{}
\Ifstr{\degreecourse}{LRA}{\renewcommand*{\cover}{PICs/LRA}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Rolling Stock Engineering}}{}
\Ifstr{\degreecourse}{LRM}{\renewcommand*{\cover}{PICs/LRM}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Rolling Stock Engineering}}{}
\Ifstr{\degreecourse}{LRZ}{\renewcommand*{\cover}{PICs/LRZ}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Rolling Stock Engineering}}{}
\Ifstr{\degreecourse}{LUE}{\renewcommand*{\cover}{PICs/LUE}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{User Experience Management}}{}
\Ifstr{\degreecourse}{LUM}{\renewcommand*{\cover}{PICs/LUM}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{User Experience Management}}{}
\Ifstr{\degreecourse}{LUX}{\renewcommand*{\cover}{PICs/LUX}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{User Experience Management}}{}
\Ifstr{\degreecourse}{LZA}{\renewcommand*{\cover}{PICs/LZA}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Engineering Management}}{}
\Ifstr{\degreecourse}{LZM}{\renewcommand*{\cover}{PICs/LZM}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Engineering Management}}{}
\Ifstr{\degreecourse}{LZZ}{\renewcommand*{\cover}{PICs/LZZ}%
\renewcommand*{\institution}{Academy}%
\renewcommand*{\degreecourse}{Engineering Management}}{}
\Ifstr{\degreecourse}{MCS}{\renewcommand*{\cover}{PICs/MCS}%
\renewcommand*{\degreecourse}{IT-Security}}{}
\Ifstr{\degreecourse}{MDS}{\renewcommand*{\cover}{PICs/MDS}%
\renewcommand*{\degreecourse}{Data Science}}{}
\Ifstr{\degreecourse}{MEE}{\renewcommand*{\cover}{PICs/MEE}%
\renewcommand*{\degreecourse}{Renewable Energies}}{}
\Ifstr{\degreecourse}{MES}{\renewcommand*{\cover}{PICs/MES}%
\renewcommand*{\degreecourse}{Embedded Systems}}{}
\Ifstr{\degreecourse}{MGR}{\renewcommand*{\cover}{PICs/MGR}%
\renewcommand*{\degreecourse}{Healthcare and Rehabilitation Technology}}{}
\Ifstr{\degreecourse}{MGS}{\renewcommand*{\cover}{PICs/MGS}%
\renewcommand*{\degreecourse}{Game Engineering and Simulation Technology}}{}
\Ifstr{\degreecourse}{MIW}{\renewcommand*{\cover}{PICs/MIW}%
\renewcommand*{\degreecourse}{International Business and Engineering}}{}
\Ifstr{\degreecourse}{MLE}{\renewcommand*{\cover}{PICs/MLE}%
\renewcommand*{\degreecourse}{Power Electronics}}{}
\Ifstr{\degreecourse}{MMB}{\renewcommand*{\cover}{PICs/MMB}%
\renewcommand*{\degreecourse}{Mechanical Engineering}}{}
\Ifstr{\degreecourse}{MME}{\renewcommand*{\cover}{PICs/MME}%
\renewcommand*{\degreecourse}{Medical Engineering \& eHealth}}{}
\Ifstr{\degreecourse}{MMR}{\renewcommand*{\cover}{PICs/MMR}%
\renewcommand*{\degreecourse}{Mechatronics/Robotics}}{}
\Ifstr{\degreecourse}{MSC}{\renewcommand*{\cover}{PICs/MSC}%
\renewcommand*{\degreecourse}{Integrative Urban Development - Smart City}}{}
\Ifstr{\degreecourse}{MSE}{\renewcommand*{\cover}{PICs/MSE}%
\renewcommand*{\degreecourse}{Software Engineering}}{}
\Ifstr{\degreecourse}{MST}{\renewcommand*{\cover}{PICs/MST}%
\renewcommand*{\degreecourse}{Sports Technology}}{}
\Ifstr{\degreecourse}{MTE}{\renewcommand*{\cover}{PICs/MTE}%
\renewcommand*{\degreecourse}{Tissue Engineering and Regenerative Medicine}}{}
\Ifstr{\degreecourse}{MTI}{\renewcommand*{\cover}{PICs/MTI}%
\renewcommand*{\degreecourse}{Telecommunications and Internet Technologies}}{}
\Ifstr{\degreecourse}{MTM}{\renewcommand*{\cover}{PICs/MTM}%
\renewcommand*{\degreecourse}{Innovation and Technology Management}}{}
\Ifstr{\degreecourse}{MUT}{\renewcommand*{\cover}{PICs/MUT}%
\renewcommand*{\degreecourse}{Ecotoxicology \& Environmental Management}}{}
\Ifstr{\degreecourse}{MWI}{\renewcommand*{\cover}{PICs/MWI}%
\renewcommand*{\degreecourse}{Information Systems Management}}{}
}{}
\Ifstr{\doctype}{}{%
\renewcommand*{\cover}{PICs/fhtw_cover.png}%
}{\Ifstr{\institution}{Technikum}%
{\renewcommand*{\cover}{PICs/fhtw_cover.png}}%
{\renewcommand*{\cover}{PICs/fhtw_cover.png}}}
\newcommand*{\@supervisor}{}
\newcommand*{\@supervisordesc}{}
\newcommand{\supervisor}[2][]{\gdef\@supervisordesc{#1}\gdef\@supervisor{#2}}
\newcommand*{\@secondsupervisor}{}
\newcommand*{\@secondsupervisordesc}{}
\newcommand{\secondsupervisor}[2][]{\gdef\@secondsupervisordesc{#1}\gdef\@secondsupervisor{#2}}
\newcommand*{\@studentnumber}{}
\newcommand{\studentnumber}[1]{\gdef\@studentnumber{#1}}
\newcommand*{\@place}{}
\newcommand{\place}[1]{\gdef\@place{#1}}
\newcommand*{\@kurzfassung}{}
\newcommand{\kurzfassung}[1]{\gdef\@kurzfassung{#1}}
\newcommand*{\@schlagworte}{}
\newcommand{\schlagworte}[1]{\gdef\@schlagworte{#1}}
\newcommand*{\@outline}{}
\newcommand{\outline}[1]{\gdef\@outline{#1}}
\newcommand*{\@keywords}{}
\newcommand{\keywords}[1]{\gdef\@keywords{#1}}
\newcommand*{\@acknowledgements}{}
\newcommand{\acknowledgements}[1]{\gdef\@acknowledgements{#1}}
\providecommand{\sc}{}
\renewcommand{\sc}{\normalfont\scshape}
\renewcommand*{\familydefault}{\sfdefault}\selectfont
\normalfont\selectfont
\renewcommand{\and}{\newline}
\renewcommand*\maketitle[1][1]{%
\begin{titlepage}
\pagestyle{empty}
\tikzifexternalizing{}{%
\ThisTileWallPaper{\paperwidth}{\paperheight}{\cover}%
}
\Ifstr{\doctype}{}
{
\color{TWblue}
\null\vspace{125pt}
\setcounter{page}{-9}
\hspace*{-26pt}\begin{minipage}{0.66\linewidth}
\huge\sffamily \scalebox{1.75}{\begin{minipage}{\linewidth}\@title\end{minipage}}
\end{minipage}\vspace{23pt}
\hspace*{-24.75pt}\begin{minipage}{0.66\linewidth}
\huge\sffamily \scalebox{1.25}{\begin{minipage}{\linewidth}\@extratitle\end{minipage}}
\end{minipage}\vspace{47pt}
\setcounter{page}{0}}
{
\ifdraft{\color{red}}{\color{black}}
\null\vspace{8pt}
\setcounter{page}{-9}
\ifdraft{\hspace*{-30pt}\scalebox{1.85}{\sffamily\textbf\doctypeprint -- DRAFT}}{\hspace*{-30pt}\scalebox{1.85}{\sffamily\textbf\doctypeprint}}
\vspace{17pt}
\hspace*{-34pt}\scalebox{1.5}{%
\Ifstr{\degreecourse}{Technisches Umweltmanagement und
{\"O}kotoxikologie}
{
\begin{minipage}{0.72\linewidth}
\Ifstr{\sprache}{german}{\Ifstr{\doctype}{MASTERARBEIT}{zur Erlangung des akademischen Grades\\\glqq{}Master of Science in Engineering\grqq{}\\im Studiengang }{\Ifstr{\doctype}{BACHELORARBEIT}{zur Erlangung des akademischen Grades\\\glqq{}Bachelor of Science in Engineering\grqq{}\\im Studiengang }{Im Studiengang}}}{\Ifstr{\doctype}{MASTERTHESIS}{Thesis submitted in partial fulfillment of the requirements for the degree of Master of Science in Engineering at the University of Applied Sciences Technikum Wien - Degree Program }{\Ifstr{\doctype}{BACHELORTHESIS}{Term paper submitted in partial fulfillment of the requirements for the degree of Bachelor of Science in Engineering at the University of Applied Sciences Technikum Wien - Degree Program }{In}}}
\degreecourse
\end{minipage}\vspace{5pt}}
{
\begin{minipage}{0.72\linewidth}
\Ifstr{\sprache}{german}{\Ifstr{\doctype}{MASTERARBEIT}{zur Erlangung des akademischen Grades\\\glqq{}Master of Science in Engineering\grqq{}\\im Studiengang }{\Ifstr{\doctype}{BACHELORARBEIT}{zur Erlangung des akademischen Grades\\\glqq{}Bachelor of Science in Engineering\grqq{}\\im Studiengang }{Im Studiengang}}}{\Ifstr{\doctype}{MASTERTHESIS}{Thesis submitted in partial fulfillment of the requirements for the degree of Master of Science in Engineering at the University of Applied Sciences Technikum Wien - Degree Program }{\Ifstr{\doctype}{BACHELORTHESIS}{Term paper submitted in partial fulfillment of the requirements for the degree of Bachelor of Science in Engineering at the University of Applied Sciences Technikum Wien - Degree Program }{In}}}
\degreecourse\vspace{5pt}
\end{minipage}}}
\vspace{54.7pt}
\hspace*{-30pt}\begin{minipage}{0.9625\linewidth}
\huge\bfseries\sffamily \@title
\end{minipage}\vspace{47pt}
\Large
\hspace*{-34pt}%
\Ifstr{\sprache}{german}{Ausgef{\"u}hrt von:~}{By:~}%
\begin{minipage}[t]{0.5\linewidth}\@author\end{minipage}%
\vspace{0.33\baselineskip}%
\hspace*{-34pt}%
\Ifstr{\sprache}{german}{Personenkennzeichen:~}{Student Number:~}%
\begin{minipage}[t]{0.25\linewidth}\@studentnumber\end{minipage}%
\vspace{\baselineskip}%
\hspace*{-34pt}%
\ifx\@secondsupervisor\@empty%
\ifx\@supervisordesc\@empty%
\Ifstr{\sprache}{german}{BegutachterIn:~}{Supervisor:~}%
\else%
\@supervisordesc:~%
\fi%
\begin{minipage}[t]{0.6\linewidth}%
\bgroup\@supervisor\egroup%
\end{minipage}\vspace{0.8\baselineskip}%
\else%
\ifx\@supervisordesc\@empty%
\Ifstr{\sprache}{german}{\gdef\@supervisordesc{BegutachterInnen}}{\gdef\@supervisordesc{Supervisors}}%
\fi%
\ifx\@secondsupervisordesc\@empty%
\gdef\@secondsupervisordesc{}%
\fi%
\newlength\TWLength%
\newlength\TWLengthA%
\newlength\TWLengthB%
\settowidth\TWLengthA{\@supervisordesc:}%
\settowidth\TWLengthB{\@secondsupervisordesc:}%
\ifdim \TWLengthA>\TWLengthB%
\setlength\TWLength\TWLengthA%
\else%
\setlength\TWLength\TWLengthB%
\fi%
\begin{minipage}[t]{\TWLength}%
\@supervisordesc:\\%
\ifx\@secondsupervisordesc\@empty%
\else%
\@secondsupervisordesc:%
\fi%
\end{minipage}~%
\begin{minipage}[t]{0.6\linewidth}%
\bgroup\@supervisor\egroup\\%
\bgroup\@secondsupervisor\egroup%
\end{minipage}\vspace{0.8\baselineskip}%
\fi%
\hspace*{-34pt}%
\@place%
\Ifstr{\sprache}{german}{, den~}{,~}\today%
\clearpage
\color{black}\normalsize\mdseries
\Ifstr{\doctype}{PROJEKTBERICHT}{
\ifx\@kurzfassung\@empty
\else\clearpage
\chapter*{Kurzfassung}
\@kurzfassung
\ifx\@schlagworte\@empty
\else\vfill\paragraph*{Schlagworte:}\@schlagworte
\fi
\fi}{}
\Ifstr{\doctype}{PROJECT REPORT}{
\ifx\@outline\@empty
\else\clearpage
\chapter*{Abstract}
\@outline
\ifx\@keywords\@empty
\else\vfill\paragraph*{Keywords:}\@keywords
\fi
\fi}{}
\Ifstr{\doctype}{SEMINARARBEIT}{
\ifx\@kurzfassung\@empty
\else\clearpage
\chapter*{Kurzfassung}
\@kurzfassung
\ifx\@schlagworte\@empty
\else\vfill\paragraph*{Schlagworte:}\@schlagworte
\fi
\fi
\ifx\@outline\@empty
\else\clearpage
\chapter*{Abstract}
\@outline
\ifx\@keywords\@empty
\else\vfill\paragraph*{Keywords:}\@keywords
\fi
\fi}{}
\Ifstr{\doctype}{SEMINAR PAPER}{
\ifx\@outline\@empty
\else\clearpage
\chapter*{Abstract}
\@outline
\ifx\@keywords\@empty
\else\vfill\paragraph*{Keywords:}\@keywords
\fi
\fi
\ifx\@kurzfassung\@empty
\else\clearpage
\chapter*{Kurzfassung}
\@kurzfassung
\ifx\@schlagworte\@empty
\else\vfill\paragraph*{Schlagworte:}\@schlagworte
\fi
\fi}{}
\Ifstr{\doctype}{BACHELORARBEIT}{
\chapter*{Eidesstattliche Erkl{\"a}rung}
\glqq Ich, als Autor / als Autorin und Urheber / Urheberin der
vorliegenden Arbeit, best{\"a}tige mit meiner Unterschrift die
Kenntnisnahme der einschl{\"a}gigen urheber- und hochschulrechtlichen
Bestimmungen (vgl. Urheberrechtsgesetz idgF sowie Satzungsteil
Studienrechtliche Bestimmungen / Pr{\"u}fungsordnung der FH Technikum
Wien idgF).\\[\baselineskip]
Ich erkl{\"a}re hiermit, dass ich die vorliegende Arbeit selbst{\"a}ndig
angefertigt und Gedankengut jeglicher Art aus fremden sowie
selbst verfassten Quellen zur G{\"a}nze zitiert habe. Ich bin mir
bei Nachweis fehlender Eigen- und Selbstst{\"a}ndigkeit sowie dem
Nachweis eines Vorsatzes zur Erschleichung einer positiven
Beurteilung dieser Arbeit der Konsequenzen bewusst, die von der
Studiengangsleitung ausgesprochen werden k{\"o}nnen (vgl. Satzungsteil
Studienrechtliche Bestimmungen / Pr{\"u}fungsordnung der FH Technikum
Wien idgF).\\[\baselineskip]
Weiters best{\"a}tige ich, dass ich die vorliegende Arbeit bis dato
nicht ver{\"o}ffentlicht und weder in gleicher noch in {\"a}hnlicher
Form einer anderen Pr{\"u}fungsbeh{\"o}rde vorgelegt habe. Ich versichere,
dass die abgegebene Version jener im Uploadtool
entspricht.\grqq\vspace{4\baselineskip}
\noindent \@place, \today\hspace{0.4\linewidth}Unterschrift
\ifx\@kurzfassung\@empty
\ifx\@schlagworte\@empty
\else\clearpage\null\vfill\paragraph*{Schlagworte:}\@schlagworte
\fi
\else\clearpage
\chapter*{Kurzfassung}
\@kurzfassung
\ifx\@schlagworte\@empty
\else\vfill\paragraph*{Schlagworte:}\@schlagworte
\fi
\fi
\ifx\@outline\@empty
\ifx\@keywords\@empty
\else\clearpage\null\vfill\paragraph*{Keywords:}\@keywords
\fi
\else\clearpage
\chapter*{Abstract}
\@outline
\ifx\@keywords\@empty
\else\vfill\paragraph*{Keywords:}\@keywords
\fi
\fi
\ifx\@acknowledgements\@empty
\else\clearpage
\chapter*{Danksagung}\@acknowledgements
\fi
\clearpage
\tableofcontents
\clearpage
\setcounter{page}{1}}{
\Ifstr{\doctype}{MASTERARBEIT}{
\chapter*{Eidesstattliche Erkl{\"a}rung}
\glqq Ich, als Autor / als Autorin und Urheber / Urheberin der
vorliegenden Arbeit, best{\"a}tige mit meiner Unterschrift die
Kenntnisnahme der einschl{\"a}gigen urheber- und hochschulrechtlichen
Bestimmungen (vgl. Urheberrechtsgesetz idgF sowie Satzungsteil
Studienrechtliche Bestimmungen / Pr{\"u}fungsordnung der FH Technikum
Wien idgF).\\[\baselineskip]
Ich erkl{\"a}re hiermit, dass ich die vorliegende Arbeit selbst{\"a}ndig
angefertigt und Gedankengut jeglicher Art aus fremden sowie
selbst verfassten Quellen zur G{\"a}nze zitiert habe. Ich bin mir
bei Nachweis fehlender Eigen- und Selbstst{\"a}ndigkeit sowie dem
Nachweis eines Vorsatzes zur Erschleichung einer positiven
Beurteilung dieser Arbeit der Konsequenzen bewusst, die von der
Studiengangsleitung ausgesprochen werden k{\"o}nnen (vgl. Satzungsteil
Studienrechtliche Bestimmungen / Pr{\"u}fungsordnung der FH Technikum
Wien idgF).\\[\baselineskip]
Weiters best{\"a}tige ich, dass ich die vorliegende Arbeit bis dato
nicht ver{\"o}ffentlicht und weder in gleicher noch in {\"a}hnlicher
Form einer anderen Pr{\"u}fungsbeh{\"o}rde vorgelegt habe. Ich versichere,
dass die abgegebene Version jener im Uploadtool
entspricht.\grqq\vspace{4\baselineskip}
\noindent \@place, \today\hspace{0.4\linewidth}Unterschrift
\ifx\@kurzfassung\@empty
\ifx\@schlagworte\@empty
\else\clearpage\null\vfill\paragraph*{Schlagworte:}\@schlagworte
\fi
\else\clearpage
\chapter*{Kurzfassung}
\@kurzfassung
\ifx\@schlagworte\@empty
\else\vfill\paragraph*{Schlagworte:}\@schlagworte
\fi
\fi
\ifx\@outline\@empty
\ifx\@keywords\@empty
\else\clearpage\null\vfill\paragraph*{Keywords:}\@keywords
\fi
\else\clearpage
\chapter*{Abstract}
\@outline
\ifx\@keywords\@empty
\else\vfill\paragraph*{Keywords:}\@keywords
\fi
\fi
\ifx\@acknowledgements\@empty
\else\clearpage
\chapter*{Danksagung}\@acknowledgements
\fi
\clearpage
\tableofcontents
\clearpage
\setcounter{page}{1}}{
\Ifstr{\doctype}{BACHELORTHESIS}{
\chapter*{Declaration}
``As author and creator of this work to hand, I confirm with my
signature knowledge of the relevant copyright regulations
governed by higher education acts (see Urheberrechtsgesetz
/Austrian copyright law as amended as well as the Statute on
Studies Act Provisions / Examination Regulations of the UAS
Technikum Wien as amended).\\[\baselineskip]
I hereby declare that I completed the present work independently
and that any ideas, whether written by others or by myself, have
been fully sourced and referenced. I am aware of any consequences
I may face on the part of the degree program director if there
should be evidence of missing autonomy and independence or
evidence of any intent to fraudulently achieve a pass mark for
this work (see Statute on Studies Act Provisions / Examination
Regulations of the UAS Technikum Wien as amended).\\[\baselineskip]
I further declare that up to this date I have not published the work to
hand nor have I presented it to another examination board in the same or
similar form. I affirm that the version submitted matches the version in
the upload tool.``\vspace{4\baselineskip}
\noindent \@place, \today\hspace{0.4\linewidth}Signature
\ifx\@kurzfassung\@empty
\ifx\@schlagworte\@empty
\else\clearpage\null\vfill\paragraph*{Schlagworte:}\@schlagworte
\fi
\else\clearpage
\chapter*{Kurzfassung}
\@kurzfassung
\ifx\@schlagworte\@empty
\else\vfill\paragraph*{Schlagworte:}\@schlagworte
\fi
\fi
\ifx\@outline\@empty
\ifx\@keywords\@empty
\else\clearpage\null\vfill\paragraph*{Keywords:}\@keywords
\fi
\else\clearpage
\chapter*{Abstract}
\@outline
\ifx\@keywords\@empty
\else\vfill\paragraph*{Keywords:}\@keywords
\fi
\fi
\ifx\@acknowledgements\@empty
\else\clearpage
\chapter*{Acknowledgements}\@acknowledgements
\fi
\clearpage
\tableofcontents
\clearpage
\setcounter{page}{1}}{
\Ifstr{\doctype}{MASTERTHESIS}{
\chapter*{Declaration}
``As author and creator of this work to hand, I confirm with my
signature knowledge of the relevant copyright regulations
governed by higher education acts (see Urheberrechtsgesetz
/Austrian copyright law as amended as well as the Statute on
Studies Act Provisions / Examination Regulations of the UAS
Technikum Wien as amended).\\[\baselineskip]
I hereby declare that I completed the present work independently
and that any ideas, whether written by others or by myself, have
been fully sourced and referenced. I am aware of any consequences
I may face on the part of the degree program director if there
should be evidence of missing autonomy and independence or
evidence of any intent to fraudulently achieve a pass mark for
this work (see Statute on Studies Act Provisions / Examination
Regulations of the UAS Technikum Wien as amended).\\[\baselineskip]
I further declare that up to this date I have not published the work to
hand nor have I presented it to another examination board in the same or
similar form. I affirm that the version submitted matches the version in
the upload tool.``\vspace{4\baselineskip}
\noindent \@place, \today\hspace{0.4\linewidth}Signature
\ifx\@kurzfassung\@empty
\ifx\@schlagworte\@empty
\else\clearpage\null\vfill\paragraph*{Schlagworte:}\@schlagworte
\fi
\else\clearpage
\chapter*{Kurzfassung}
\@kurzfassung
\ifx\@schlagworte\@empty
\else\vfill\paragraph*{Schlagworte:}\@schlagworte
\fi
\fi
\ifx\@outline\@empty
\ifx\@keywords\@empty
\else\clearpage\null\vfill\paragraph*{Keywords:}\@keywords
\fi
\else\clearpage
\chapter*{Abstract}
\@outline
\ifx\@keywords\@empty
\else\vfill\paragraph*{Keywords:}\@keywords
\fi
\fi
\ifx\@acknowledgements\@empty
\else\clearpage
\chapter*{Acknowledgements}\@acknowledgements
\fi
\clearpage
\tableofcontents
\clearpage
\setcounter{page}{1}}{
\clearpage
\tableofcontents
\clearpage
\setcounter{page}{1}}}}}}
\end{titlepage}
}
\Ifstr{\doctype}{}
{
\renewcommand*{\labelitemi}{
\huge\raisebox{0.2ex}{$\centerdot$}\hspace{-5pt}}
\renewcommand*{\labelitemii}{
\huge\raisebox{-0.15ex}{-}\hspace{-5pt}}
\renewcommand*{\labelitemiii}{
\LARGE\raisebox{0.3ex}{$\centerdot$}\hspace{-5pt}}
}{}
%% Verfasser der Änderung: Otrebski
\endinput
\endinput
%%
%% End of file `twbook.cls'.