summaryrefslogtreecommitdiff
path: root/info/examples/Einfuehrung2/15-04-58.ltx
diff options
context:
space:
mode:
Diffstat (limited to 'info/examples/Einfuehrung2/15-04-58.ltx')
-rw-r--r--info/examples/Einfuehrung2/15-04-58.ltx39
1 files changed, 39 insertions, 0 deletions
diff --git a/info/examples/Einfuehrung2/15-04-58.ltx b/info/examples/Einfuehrung2/15-04-58.ltx
new file mode 100644
index 0000000000..1c3cc39df6
--- /dev/null
+++ b/info/examples/Einfuehrung2/15-04-58.ltx
@@ -0,0 +1,39 @@
+%%
+%% Ein Beispiel der DANTE-Edition
+%%
+%% 2. Auflage
+%%
+%% Beispiel 15-04-58 auf Seite 803.
+%%
+%% Copyright (C) 2016 Herbert Voss
+%%
+%% It 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.
+%%
+%% See http://www.latex-project.org/lppl.txt for details.
+%%
+%%
+%% ====
+% Show page(s) 1
+%%
+%%
+\documentclass[]{exaarticle}
+\pagestyle{empty}
+\setlength\textwidth{352.81416pt}
+\usepackage[T1]{fontenc}
+%StartShownPreambleCommands
+\usepackage{tikz} \usetikzlibrary{topaths,positioning,automata}
+%StopShownPreambleCommands
+\begin{document}
+\begin{tikzpicture}[shorten >=1pt,node distance=2cm,on grid]
+ \node[state,initial] (q_0) {$q_0$};
+ \node[state] (q_1) [right=of q_0] {$q_1$};
+ \node[state,accepting](q_2) [right=of q_1] {$q_2$};
+ \path[->] (q_0) edge node [above] {0} (q_1)
+ edge [loop above] node {1} ()
+ edge [bend left] node [above] {1} (q_2)
+ edge [bend right] node [below] {0} (q_2)
+ (q_1) edge node [above] {1} (q_2);
+\end{tikzpicture}
+\end{document}