I followed the link to sourceforge.net from Is it possible to change the size of an arrowhead in TikZ/PGF?. The last comment by left by Till Tantau led me to believe that I could implement code where I change the arrow size. So, I updated my TikZ packages from CVS.
Then I tried to rescale the arrows. This is what I tried
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}
\coordinate (A) at (0,0);
\coordinate (B) at (3in,0);
\draw[arrows=-{stealth[width=1cm,length=1cm]}] (A) -- (B);
\end{tikzpicture}
\end{document}
But the code neither raises any errors nor does it seem to have any effect. Has anyone else tried to resize their arrows using the most recent CVS TikZ package?
UPDATE
I'm trying to follow the documentation in section 16.3 on Arrow keys.
In fact, if I try to follow the example in the manual a bit more strictly, using Stealth instead of stealth I get an error message.
arrows.metalibrary and b) changestealthtoStealth, it works. (By the way, it raises error with my code but I may have a newer version than you had when you asked the question.) – Qrrbrbirlbel Oct 13 '13 at 15:11stealthandStealth? – Damitr Apr 15 '20 at 16:38