I need to implement some diagrams arrows, like the ones used with the tikz package in a subfigure template (I used subfigure because subfloats give me problems).
So the subfigure template is like the one in this older post subfigure template and the arrows that I would like to insert are just the ones in this other post arrows.
Assuming I would like that for each couple of subfigures there's an arrow in between that link each caption.
EDIT: This is a sample of the code, I do not include the begin document because I had multiple tex files. So where I insert the $\longrightarrow$, instead, I would like an arrow like the one in the post I cited before.
...
\begin{figure}[H]
\begin{center}
\subfigure[\footnotesize{Mela Golden Delicious}]{
\label{fig:mela1}
\includegraphics[width=0.2\textwidth]{example-image}
}
\subfigure[\footnotesize{Lime}]{
\label{fig:lime}
\includegraphics[width=0.2\textwidth]{example-image}
}
\subfigure[\footnotesize{Mango}]{
\label{fig:mango}
\includegraphics[width=0.2\textwidth]{example-image}
}
$\longrightarrow$
\subfigure[\footnotesize{Mela Granny Smith}]{
\label{fig:mela2}
\includegraphics[width=0.2\textwidth]{example-image}
}\\
\subfigure[\footnotesize{Mandarino}]{
\label{fig:manda}
\includegraphics[width=0.2\textwidth]{example-image}
}
\subfigure[\footnotesize{Pompelmo}]{
\label{fig:pom}
\includegraphics[width=0.2\textwidth]{example-image}
}
$\longrightarrow$
\subfigure[\footnotesize{Arancia}]{
\label{fig:aranc}
\includegraphics[width=0.2\textwidth]{example-image}
}\\
\subfigure[\footnotesize{Succo all'arancia}]{
\label{fig:succo1}
\includegraphics[width=0.2\textwidth]{example-image}
}
$\longrightarrow$
\subfigure[\footnotesize{Succo al pompelmo}]{
\label{fig:succo2}
\includegraphics[width=0.2\textwidth]{example-image}
}\\
\subfigure[\footnotesize{Cetriolo}]{
\label{fig:cet}
\includegraphics[width=0.2\textwidth]{example-image}
}
$\longrightarrow$
\subfigure[\footnotesize{Zucchina}]{
\label{fig:zuc}
\includegraphics[width=0.2\textwidth]{example-image}
}
\end{center}
\caption{Example}
\label{fig:subfigures6}
\end{figure}

$\longrightarrow$s? You could include a free-hand sketch of what you want to achieve. – Skillmon Feb 12 '20 at 15:58centerenvironment inside of afigure, instead you should use\centering,centeradds unwanted vertical space. – Skillmon Feb 13 '20 at 09:42\footnotesizedoesn't take an argument, but acts as a switch, affecting everything from that point on wards in the current group. So instead of\footnotesize{foo}you should use{\footnotesize foo}. – Skillmon Feb 13 '20 at 11:30