I know that the TikZ Arrow Tip Library (arrows) defines a circle arrow [-o], however this circle is too large for me. Is there any way I can control the size of the circle on the end of line?
Tell me more
×
TeX - LaTeX Stack Exchange is a question and answer site for
users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.
|
|
||||
| show 3 more comments |
|
You can use the
|
|||||||
|


\begin{tikzpicture} \def\radius{2pt} \draw (0,0) -- (1,0) node [circle,radius=\radius,draw,fill=white,inner sep=\radius] {}; \end{tikzpicture}– hpesoj626 Oct 26 '12 at 14:48pgflibraryarrows.code.tex? If you change there the line\pgfpathcircle{\pgfqpoint{4.5\pgfutil@tempdima}{0bp}}{4.5\pgfutil@tempdima}by other with a value less than 4.5 you will obtain what you want. – rafaeldf Oct 26 '12 at 15:24\tikzset{o=<options go here>}, similar to how one can change the arrows easily using\tikzset{>=stealth}for example – cmhughes Oct 26 '12 at 19:26