diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/einfuehrung/15-04-58.ltx')
-rw-r--r-- | Master/texmf-dist/doc/latex/einfuehrung/15-04-58.ltx | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/einfuehrung/15-04-58.ltx b/Master/texmf-dist/doc/latex/einfuehrung/15-04-58.ltx new file mode 100644 index 00000000000..21782e690d2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/einfuehrung/15-04-58.ltx @@ -0,0 +1,37 @@ +%% +%% Ein Beispiel der DANTE-Edition +%% +%% Beispiel 15-04-58 auf Seite 830. +%% +%% Copyright (C) 2012 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} + +\usepackage{tikz} +\usetikzlibrary{topaths,positioning,automata} + +\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} |