-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAutomatentheorie.tex
99 lines (83 loc) · 3.04 KB
/
Automatentheorie.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
\documentclass[
12pt, % Schriftgröße
a4paper, % Papierformat
oneside, % einseitiges Dokument
titlepage, % es wird eine Titelseite verwendet
parskip=full, % Abstand zwischen Absätzen (volle Zeile)=full halbe zeille = half
headings=normal, % Größe der Überschriften verkleinern
BCOR=10mm, % Bindekorrektur
final % Status des Dokuments (final/draft)
]{scrreprt}
\usepackage{graphicx}
%\usepackage{wasysym}
\usepackage{pstricks,pst-node,pst-tree} %Für Bäume
\usepackage{framed} %Fuer die Hinweisbox
\usepackage{soul} %Fuer farbige Unterstreichungen
\usepackage{color} %Fuer schreibbare Farben wie z. B. red
%%Smiley ;-)
\newcommand{\smiley}{
\begin{pspicture}(0.5,0.35)
\pscircle(0.25,0.15){0.2}
\qdisk(0.19,0.20){0.03}
\qdisk(0.31,0.20){0.03}
\psarc(0.25,0.15){0.1}{210}{330}
\end{pspicture}
}
\newcommand{\blitz}{
\begin{pspicture}(0.25,0.25)
\psscalebox{0.5}{
\psline[linewidth=1pt](0.35,0.5)(0.15,0.25)
\psline[linewidth=0.5pt](0.15,0.25)(0.35,0.25)
\psline[linewidth=1pt](0.35,0.25)(0,0)
\psline[linewidth=1pt](0.15,0)(0,0)
\psline[linewidth=1pt](0,0.15)(0,0)
}
\end{pspicture}
}
% Hinweisbox
\newenvironment{balken}{
\def\FrameCommand##1{\textcolor{red}{\vrule width 3pt} \hspace{10pt}##1}
\MakeFramed {\advance\hsize-\width \FrameRestore}}
{\endMakeFramed}
\newcommand*{\hinweis}{\hspace{-15pt}\colorbox{red}{\textbf{\textcolor{white}{ HINWEIS }}}}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{setspace}
\usepackage[
automark, % Kapitelangaben in Kopfzeile automatisch erstellen
headsepline, % Trennlinie unter Kopfzeile
ilines % Trennlinie linksbündig ausrichten
]{scrpage2}
\usepackage{lmodern} %Schriftbild in Adobe PDf sonst unleserlich
%Formatierung geht ab hier los:
\setkomafont{sectioning}{\normalcolor\bfseries} % Ändert Überschriftschriftart (nun mit Serifen)
\onehalfspacing %Zeilenabstand 1,5 fach
\KOMAoptions{DIV=last} %Satzspiegel neu berechnen wegen 1,5 fach Zeilenabstand
% Kopf- und Fußzeilen ------------------------------------------------------
\pagestyle{scrheadings}
% Kopf- und Fußzeile auch auf Kapitelanfangsseiten -------------------------
\renewcommand*{\chapterpagestyle}{scrheadings}
% Schriftform der Kopfzeile ------------------------------------------------
\renewcommand{\headfont}{\normalfont}
% Kopfzeile ----------------------------------------------------------------
\ihead{\textit{\headmark}}
\chead{}
\chead{}
\setlength{\headheight}{21mm} % Höhe der Kopfzeile
\setheadwidth[0pt]{textwithmarginpar} % Kopfzeile über den Text hinaus verbreitern
\setheadsepline[text]{0.4pt} % Trennlinie unter Kopfzeile
% Fußzeile -----------------------------------------------------------------
%\ifoot{\copyright\ \autor}
\cfoot{}
\ofoot{\pagemark}
\title{Automatentheorie und formale Sprachen}
\subject{Script zur Lehrveranstaltung}
\author{Florian Schleich}
\subtitle{Prof. Annika Wagner}
\publishers{\includegraphics[scale=0.5]{images/HS-Fulda-logo.eps}}
\begin{document}
\maketitle
\tableofcontents
\include{kapitel1}
\include{kapitel2}
\end{document}