I'm trying to generate multiple nodes in TikZ using the foreach operator, but whatever I try I get compilation errors. I need all nodes to be named in order to draw edges between them.
Having read that let could solve it, here follows my latest attempt:
\foreach \i in {1, 2, 3}
{
\node let \n1 = (4+\i)
in
at +(1, 0) [process_small] (p0\n1) {};
}