TeX capacity exceeded, sorry [input stack size=5000]. \node [fill, right=of t]
in the following code:Code: Select all
\begin{tikzpicture}
[inner sep=0.5mm,
nofill/.style={circle,draw=cyan, xshift=-5.5ex},
fill/.style={circle, fill=cyan, xshift=-5.5ex}]
\node (t) {Text};
\node [fill, right=of t] (1) {};
\node [nofill, right=of 1] (2) {};
\node [nofill, right=of 2] (3) {};
\node [nofill, right=of 3] (4) {};
\node [nofill, right=of 4] (5) {};
\end{tikzpicture}
Code: Select all
\begin{tikzpicture}
[inner sep=0.5mm,
nofill/.style={circle,draw=cyan, xshift=-5.5ex}]
% fill/.style={circle, fill=cyan, xshift=-5.5ex}]
\node (t) {Text};
\node [nofill, fill=cyan, right=of t] (1) {};
\node [nofill, right=of 1] (2) {};
\node [nofill, right=of 2] (3) {};
\node [nofill, right=of 3] (4) {};
\node [nofill, right=of 4] (5) {};
\end{tikzpicture}