Hi what I'm trying to do is having icons e.g. arrows between a subfloat images that displays some kind of a "process" between the images.
This is my code so far:
\documentclass{report}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subfig}
\begin{document}
\begin{figure} [h]
\subfloat[text 1]{
\includegraphics[width=0.28\textwidth]
{example-image-a}}
\hfil
\subfloat[text 2]{
\includegraphics[width=0.28\textwidth]
{example-image-b}}
\hfil
\subfloat[text 3]{
\includegraphics[width=0.28\textwidth]
{example-image-c}}
\subfloat[text 4]{
\includegraphics[width=0.28\textwidth]
{example-image}}
\hfil
\subfloat[text 5]{
\includegraphics[width=0.28\textwidth]
{example-image}}
\hfil
\subfloat[text 6]{
\includegraphics[width=0.28\textwidth]
{example-image}}
\captionof{figure}[]{long text}
\label{fig:merge}
\end{figure}
\end{document}
Which gives me this:
What I want to have:
Is there a way of doing it?



+90is not what I expected :/ – flor1an Jun 25 '17 at 19:51origin=csolves the problem, and I defined two arrows, changing the initial name. – Bernard Jun 25 '17 at 21:03