This is a figure from Sipser's Intro to Theory of Computation:

As we can see, the transitions on the right side "join together" before pointing to another node. How may I draw such an automaton with TikZ. Thanks!
Edited: Here's the code for a similar automaton I'm working on:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{automata,positioning,arrows.meta,shapes}
\def\eps{\varepsilon}
\def\a{\texttt{a}}
\begin{document}
\begin{tikzpicture}[>={Stealth[width=6pt,length=9pt]}, accepting/.style={double distance = 2pt, outer sep = 1pt + \pgflinewidth}, shorten >=1pt, auto]
\draw (0.0pt, -40.0pt)node[state, initial, initial text =,ellipse](0){$q_{\rm start}$};
\draw (0.0pt, -110.0pt)node[state](1){};
\draw (0.0pt, -180.0pt)node[state,ellipse](2){$q_{\rm loop}$};
\draw (0.0pt, -400.0pt)node[state, accepting,ellipse](3){$q_{\rm accept}$};
\draw (200.0pt, -150.0pt)node[state](4){};
\draw (350.0pt, -150.0pt)node[state](5){};
\draw (200.0pt, -200.0pt)node[state](6){};
\draw (350.0pt, -200.0pt)node[state](7){};
\draw (200.0pt, -250.0pt)node[state](8){};
\draw (350.0pt, -250.0pt)node[state](9){};
\path[->] (2) edge[loop left] node[align=center]{\a, \a; $\eps$\\ +, +; $\eps$\\ (, (; $\eps$\\ ), ); $\eps$\\ $\times$, $\times$; $\eps$\\ $\eps$, $F$; \a\\ $\eps$, $E$; $T$\\ $\eps$, $T$; $F$}(2);
\path[->] (7) edge node{$\eps$, $\eps$; $T$}(2);
\path[->] (2) edge node{$\eps$, $E$; $T$}(4);
\path[->] (9) edge node{$\eps$, $\eps$; (}(2);
\path[->] (4) edge node{$\eps$, $\eps$; +}(5);
\path[->] (6) edge node{$\eps$, $\eps$; $\times$}(7);
\path[->] (2) edge node{$\eps$, \$; $\eps$}(3);
\path[->] (5) edge node{$\eps$, $\eps$; $E$}(2);
\path[->] (2) edge node{$\eps$, $F$; )}(8);
\path[->] (0) edge node{$\eps$, $\eps$; \$}(1);
\path[->] (1) edge node{$\eps$, $\eps$; $E$}(2);
\path[->] (2) edge node{$\eps$, $T$; $F$}(6);
\path[->] (8) edge node{$\eps$, $\eps$; $E$}(9);
\end{tikzpicture}
\end{document}




tikzautomata library? If not, see Which package can be used to draw automata/ for an example. Build most of it and then ask specific questions about the part you're having trouble with. – Alan Munn Mar 29 '17 at 03:28\eps(not\epsilon?), you use old-style font commands (\rm). You should change that, read a (recent) latex introduction. – pschulz Mar 29 '17 at 07:20