%%
%%  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}