I have a figure that spans two columns in a two column document.
A minimal code example is given below.
\documentclass[twocolumn]{article}
\usepackage{lipsum}
\usepackage{graphicx}
\usepackage{stfloats}
\usepackage[caption=false,font=footnotesize]{subfig}
\begin{document}
\begin{figure*}[b!]
\centering
\subfloat[Box A]{\label{f_a}\includegraphics[height=3cm]{example-image-a.png}}
\hspace{1pt}
\subfloat[Box B]{\label{f_b}\includegraphics[height=3cm]{example-image-b.png}}
\hspace{1pt}
\subfloat[Box C]{\label{f_c}\includegraphics[height=3cm]{example-image-c.png}}
\label{myfig}
\caption{Three boxes}
\end{figure*}
\lipsum
\end{document}
I want to draw an arrow from one image to another without affecting the figure numbering or captions.
How to achieve the desired result ?



example-image-a.png, such that everyone can copy the code and do experiments. – gernot Oct 12 '16 at 08:22remember pictureoption oftikzpictureto access positions across pictures (for an example see e.g. texexample.net ). – gernot Oct 12 '16 at 08:28