I'm trying to generate a snaked line with an arrow head at the end of the line, I can use the following code:
\documentclass[12pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage{tikz}
\usetikzlibrary{snakes}
\begin{document}
\begin{tikzpicture}[decoration=snake] % used for wavy arrows
\draw[>=stealth, ->, snake=snake,segment amplitude = .4mm, segment length = 2mm] (1.5,6.5) -- (0,9.5);
\end{tikzpicture}
\end{document}
However, the placement of the arrowhead does not look correct in the sense that it is not in the center at the end of the line. How can I solve this?
