-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathheader.tex
executable file
·138 lines (112 loc) · 4.61 KB
/
header.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
%----------------------------------------------------------------------------
% Koma-Skript Optionen
%---------------------------------------------------------------------------
\documentclass[
a4paper,
12pt,
%twocolumn,
headings=normal % big,small
]{scrbook} %scrartcl,scrbook,scrreprt
%---------------------------------------------------------------------------
% Spracheinstellungen
%---------------------------------------------------------------------------
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english,ngerman]{babel}
%Trennungsregeln mit
\hyphenation{Sil-ben-trenn-ung Hun-de-ku-chen}
%---------------------------------------------------------------------------
% Kopf- und Fußzeile
%---------------------------------------------------------------------------
% Gestaltung von Kopf- und Fußzeile über koma-Script
\usepackage[automark]{scrpage2}
\ifoot[]{}
\cfoot[]{}
\ofoot[]{}
\automark[section]{section}
\chead[]{\headmark}
\ohead[]{}
\ohead[]{\pagemark}
\pagestyle{scrheadings}
%---------------------------------------------------------------------------
% Seitenlayout
%---------------------------------------------------------------------------
\usepackage{geometry}
\geometry{%
a4paper,
top=3.5cm,
left=2.3cm,
right=4.5cm,
bottom=4.5cm,
}
%---------------------------------------------------------------------------
% Schriften
%---------------------------------------------------------------------------
\usepackage{mathptmx}
\usepackage[scaled]{helvet}
%---------------------------------------------------------------------------
% Bibliographie
%---------------------------------------------------------------------------
\usepackage[style=authoryear,
hyperref=true,
isbn=false,
firstinits=true,
]{biblatex}
\bibliography{Data.bib} % Gibt den Ort der Bibliographiedatei an
\usepackage[babel]{csquotes}
%---------------------------------------------------------------------------
% Graphiken
%---------------------------------------------------------------------------
\usepackage{graphicx}
%---------------------------------------------------------------------------
% Tabellen
%---------------------------------------------------------------------------
\usepackage{booktabs} % für schöne Tabellen
%---------------------------------------------------------------------------
% Seiten- und Absatzumbruch
%---------------------------------------------------------------------------
\clubpenalty10000 % keine Schusterjungen
\widowpenalty10000 % keine Hurenkinder
\parindent0pt % kein Einzug
\flushbottom % erzwinge gleich volle Seiten
%---------------------------------------------------------------------------
% Für wissenschaftliche Arbeiten
%---------------------------------------------------------------------------
\newcommand{\fullname}{Vorname Nachname}
\newcommand{\email}{vorname.nachname@uni-ulm.de}
\newcommand{\titel}{Titel der Arbeit}
\newcommand{\jahr}{2009}
\newcommand{\matnr}{123456}
\newcommand{\gutachterA}{Prof.\ Dr.\ Streng Geheim}
\newcommand{\gutachterB}{Prof.\ Dr.\ Un Leserlich}
\newcommand{\betreuer}{Betreuername}
\newcommand{\fakultaet}{Ingenieurwissenschaften\\und Informatik}
%\newcommand{\fakultaet}{Mathematik und\\Wirtschaftswissenschaften}
%\newcommand{\fakultaet}{Naturwissenschaften}
%\newcommand{\fakultaet}{Medizin}
% nun noch unten das Institut einsetzen
\newcommand{\institut}{Institut für Irgendetwas}
\usepackage{setspace} % \onehalfspacing, \singlespacing, \doublespacing
%---------------------------------------------------------------------------
% Abkürzungen
%---------------------------------------------------------------------------
\usepackage{xspace} % bessere Handhabung von Leerzeichen am Ende von Abk.
\newcommand{\PSO}{Partikelschwarmoptimierung\xspace}
\newcommand{\AAL}{Ameisenalgorithmus\xspace}
\newcommand{\ST}{Stigmergie\xspace}
\newcommand{\CI}{Computational Intelligence\xspace}
\newcommand{\AI}{Artificial Intelligence\xspace}
\newcommand{\SI}{Swarmintelligence\xspace}
\newcommand{\II}{Intelligente Informationsverarbeitung\xspace}
%---------------------------------------------------------------------------
% Pdf-Setup
%---------------------------------------------------------------------------
\usepackage{microtype} % verbesserter Textsatz
\usepackage[]{hyperref}
\hypersetup{
pdftitle=\titel{},
pdfauthor=\fullname{},
pdfsubject={Abschlussarbeit},
colorlinks=false, % farbige Links abschalten
pdfborder=0 0 0 % keine Box um die Links!
}