I want to draw a sinuous arrow between two nodes. Following the first answer in this thread Easy curves in TikZ I have tried the following code, but the arrow head points to the opposite side... how could I solve it? Thanks!
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node (A) at (0,0) {\includegraphics[scale=.1]{images/presentation/2/cell.png}};
\node (B) at (8,-1) {\includegraphics[scale=.1]{images/presentation/2/cell2.png}};
\draw[->, >=latex, blue, line width=6pt] (A.east) to (B.west);
\draw [->, cyan, line width=3pt] plot [smooth, tension=1] coordinates{ ([yshift=.5cm]A.east) (2,2.5) (4,2) (6,3) ([yshift=.5cm]B.west)}; %this arrow head should point to the other side
\end{tikzpicture}
\end{document}

atan(0/?) = 90°(a typical sign that something went wrong). I fear that arrows do not work withplotout of the box … Using Jake’s answer and theabsolute supportskey, TikZ places the arrow tip correctly. By the way, we do not have these images. We’ll use\usepackage[demo]{graphicx}. – Qrrbrbirlbel Jun 28 '13 at 04:40