First question is, how would I place an arrowhead somewhere along a path?? For example,
Code: Select all
\draw [->, very thick, rounded corners=10pt, inner color = white, outer color = gray]
(-1,0)
.. controls (-0.8, -0.2) and (-0.8, -0.4).. (-0.8,-0.5)
.. controls(-1.2, -1.2) and (1.5,-2) .. (0.8, 0)
.. controls(0.8,0.5) .. (1,1)
.. controls(1.6, 2) and (-2,2) .. (-1.2,0.2)
node[pos=0.2, right=0.5cm]{$\Gamma$}
-- cycle;
Another question. I'd like to wrap a lot of my Tikz figures into a subtly dotted rectangle. Obviously, I could use the \draw command for each figure, but this would be tiresome. I would have to figure out the dimensions for each figure.
Is there a command that can simply determine the lowest lower-left and highest upper-right points?