What is the problem with this TikZ code?
\draw (-3, 0)
arc (0: 45: \myLengthA)
coordinate (ddb)
arc (45: 90: \myLengthA)
node [above left, inner sep = 0.4mm] {$A_k$}
-- +(-#1 + 3 * \arcDiagramPointSeparation - 4 * \arcHeightStep, 0)
coordinate (c3);
I want to draw an arc through 90 degrees, but I want to place a coordinate named (ddb) at the 45 degree point on the arc, for later use. But I get:
Runaway argument?
ddb)arc (45: 90: \myLengthA ) node [above left, inner sep = 0.4mm] {$\ETC.
! Paragraph ended before \tikz@@coordinate@at was complete.
<to be read again>
\par
\documentclass, relevant packages and definitions of the preamble, etc.), and minimal version of your document. – Gonzalo Medina May 29 '11 at 23:43#1. Stuff like that should really be removed before posting the question, because it distracts from the problem. Also, for me the problem doesn't appear when I use\defto define arbitrary values for the four commands, and replace the#1with a number. Are you using an old version of PGF? – Jake May 30 '11 at 5:16\pgfversionright after\begin{document}. It should be at least v2.1, otherwise you're going to run into other problems down the road (pre 2.1 versions can't align text in nodes, for example). – Jake May 30 '11 at 5:36