I'd like to place 17 evenly-spaced nodes around a circle. I am very new to Tikz and am following the Petri nets example in the manual. I would like to do something similar — essentially just recreating a better version of this, complete with all the steps described in the Wikipedia article.
Does anyone know how to place the nodes in this way? I'd appreciate and all advice!




\foreach \a/\t in {1/one,2/two,<insert here the others>,17/seventeen}. Then you can use\ton the code. – Sigur Nov 16 '13 at 21:52\foreach \a [count=\c] in {<label1>,<label2>,...,label17>}{\node at (\c*360/17:4) {\a};}– Tom Bombadil Nov 16 '13 at 23:27