summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/etdipa/diplomarbeit.tex
blob: 7ec2309ea83f6f16ca855a5f086fe0ec630b77a7 (plain)
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
  %% diplomarbeit.tex
  %% Copyright 2015 Simon M. Laube
  %
  % This work may be distributed and/or modified under the
  % conditions of the LaTeX Project Public License, either version 1.3
  % of this license or (at your option) any later version.
  % The latest version of this license is in
  %   http://www.latex-project.org/lppl.txt
  % and version 1.3 or later is part of all distributions of LaTeX
  % version 2005/12/01 or later.
  %
  % This work has the LPPL maintenance status `author maintained'.
  % 
  % The Current Maintainer of this work is S. M. Laube
  %
  % This work consists of the files listed in ./Help/files.txt

%%=====================================================%%
%% Neues Diplomarbeitstemplate der ET	   			   %%
%% Abteilung ab 2013/2014				   			   %%
%% Erstellt von Simon Michael Laube		   			   %%
%% Betreut von  Prof. Mag. Dipl.-Ing. Dr. Daniel Asch  %%
%%			    Prof. Dipl.-Ing. Dr. Wilhelm Haager	   %%
%%=====================================================%%
%% Dokumentklasse KOMA-Script Report
\documentclass[paper=a4,12pt]{scrreprt}
% Encoding UTF8
\usepackage[utf8]{inputenc}
% 8 Bit Aufloesung der Buchstaben
\usepackage[T1]{fontenc}
% Seitenraender
\usepackage[scale=0.72]{geometry}
% Spracheinstellungen
\usepackage[english, naustrian]{babel} % your native language must be the last one!!
% erweiterte Farbenpalette
\usepackage[dvipsnames]{xcolor}
% Abbildungen
\usepackage{graphicx}
% Tabellen (erweitert)
\usepackage{tabularx}
% TikZ + Circuit-TikZ (fuer Schaltungen)									
\usepackage[europeanresistors,							
			europeaninductors]{circuitikz}
% Nuetzliche TikZ Libraries
\usetikzlibrary{arrows,automata,positioning}
% Mathematikpakete!
\usepackage{amsmath,amssymb}							
%\usepackage{mathtools}	
% PDF Einbindung (zB Datenblaetter)
\usepackage{pdfpages}
% Source Code Einbindung, Setup siehe:
% http://en.wikibooks.org/wiki/LaTeX/Source_Code_Listings									
\usepackage{listings,scrhack} %scrhack vermeidet Umschaltung auf KOMA Floats..			
			
\usepackage{eurosym}
\usepackage{lscape}
% Diplomarbeitsspezifisches Package etdipa
\usepackage{etdipa}

%% Abkuerzungsverzeichnis
\usepackage[]{acronym}

%% Todos
\usepackage[]{todonotes}

%% Ganttdiagramme
\usepackage{pgfgantt}

%% Subfigures
\usepackage[lofdepth]{subfig}



%%==== Definitionen fuer die Diplomarbeit ============%%
\dokumenttyp{DIPLOMARBEIT}
\title{Musterdokument}
\author{Simon Michael Laube \and NoName1 \and NoName2}
\date{\today}
\place{St. P\"olten}
\schuljahr{2014/15}
\professor{Prof. NoName \and Dr. Engineer}
\dipacolor{ETred}
%%====================================================%%


% Hyperlinks im Dokument
\usepackage[colorlinks=true,
			linkcolor=black,
			citecolor=green,
			bookmarks=true,
			urlcolor=black,
			bookmarksopen=true]{hyperref}

\begin{document}

\frontmatter

%%================ Titelseite ==========================%%
\maketitle
% Verantwortliche/Verfasser
\responsible{Simon Michael Laube}
%%======================================================%%


%%================ Eidesstattliche Erklaerung ==========%%
\begin{Eid}%Unterschrift der Diplomanden hinzufuegen!
\unterschrift{Simon Michael Laube}
\unterschrift{Schüler 2}
\unterschrift{Schüler 3}
\end{Eid}\newpage
%%======================================================%%

%%================ Diplomandenvorstellung ==============%%
\input{Textparts/diplomanden.tex}
%%======================================================%%



%%================ Danksagungen ========================%%
\input{Textparts/danksagungen.tex}
%%======================================================%%

%%================ Abstract /Zusammenfass. =============%%
\input{Textparts/abstract.tex}
\input{Textparts/zusammenfassung.tex}
%\selectlanguage{english} % necessary for English speaking users
% delete this line if your native language is German 
%%======================================================%%

%%================ Inhaltsverzeichnis ==================%%
\tableofcontents
%%======================================================%%


%Ab hier Hauptteil
\mainmatter

\appendix

%%================ Abkuerzungsverzeichnis ==============%%
\input{Textparts/abkuerzungen.tex}
%%======================================================%%


%%================ Abbildungsverzeichnis ===============%%
\setcounter{lofdepth}{2}
\dipalistoffigures
%%======================================================%%

%%================ Tabellenverzeichnis  ================%%
\setcounter{lotdepth}{2}
\dipalistoftables
%%======================================================%%

%%================ Literaturverzeichnis ================%%
\newpage
\input{Textparts/literatur.tex}
 
	 
%%======================================================%%
\end{document}