is there a simple idiom (one not using the calc library) to specify a Tikz coordinate relative to a node?
Something like \coordinate (x) [right=of A]; instead of \node (x) [draw=none, right=of A]{};?
Thanks
|
is there a simple idiom (one not using the Something like Thanks |
|||
remark the problem is similar with
|
||||
|
|
(A.east)seems a reasonable one in this case. – Andrew Stacey May 24 '12 at 19:06\coordinate[right=of A] (x) ;is fine but not\coordinate (x) [right=of A];– Alain Matthes May 24 '12 at 19:10[right=of A]instead of(A.east), as you suggest, is that I can change the node distance and have the coordinate repositioned, or I can say directly things like[right=30mm of A]. Also a coordinate has no space, that's why I had to put[draw=none ...above. – Mário May 24 '12 at 21:48