I have a rather large number of nodes n1, n2,...,n41, all of them containing expresions like \textcolor{c}{blabla} and \large etc.
It seem when storing all these texts in an array of the form described in
List of strings for tikzpicture
namely
\documentclass{article}
\usepackage{tikz}
\begin{document}
\newcommand\johnlist{{"ala","bla","cla"}}
\begin{tikzpicture}
\node[shape=circle,draw=black] at (0,0) {\pgfmathparse{\johnlist[1]}\pgfmathresult};
\end{tikzpicture}
\end{document}
does not work if for example "bla" is replaced by \Large bla.
So the question is how to create lists or arrays of TeX-compatible strings?



\large\pgfmathparseacceptable? – Sigur Jan 29 '18 at 13:19font=\Largekey on the node. – percusse Jan 29 '18 at 14:51