I have narrowed my problem to the following MWE:
Code: Select all
\begin{tikzpicture}[node distance=3cm,auto,sloped]
\tikzstyle{initial} = [initial by arrow,initial text = {}]
\node[state,initial,label=below:$\{a,b\}$] (q0s0) {$\langle q_0, s_0 \rangle$}; % this is where the problem occurs
\node[state,label=below:$\{a,b,c\}$] (q1s3) [below of=q0s0] {$\langle q_1, s_3 \rangle$}; % same problem here
\path[->]
(q0s0) edge node {} (q1s3);
\end{tikzpicture}
Code: Select all
TeX capacity exceeded, sorry [input stack size=5000]. ...node[state,initial,label=below:$\{a,b\}$]
Even if I create a new document containing only the transition system from above, I still get the same error. OTOH, as soon as I remove the labels above the nodes, the error disappears.
Any ideas?


