im try to draw many edges loop above in the same node, i have writing :
\documentclass{report}
\usepackage{tikz}
\usetikzlibrary{arrows,positioning,automata,shadows,fit,shapes}
\begin{document}
\begin{tikzpicture}[shorten >=1pt, auto,thick,initial text=,minimum size=0pt]
\node[state, accepting] (0) {0};
\path[->] (0) edge [loop above] node {$a:\varepsilon | 1$} ();
\end{tikzpicture}
\end{document}
i want some thing like this (the picture is not pretty ):


