After trying solutions from other posts, I'm getting a bit desperate.
I simply want three items horizontaly next to each other but vertically centered. There are two images on the sides that have a large height, while there is an arrow in the middle that should be vertically centered.
I've tried this:
Code: Select all
\begin{figure}[H]
\centering
\includegraphics[height=2cm]{AntiSequence.eps}
\begin{minipage}[t]{2cm}
$\Longleftrightarrow$
\vspace{1cm}
\end{minipage}
\includegraphics[height=2cm]{StartEnd.eps}
\caption{Annihilation \& Production}
\label{fig:annihilation}
\end{figure}
Could you give me a working example? Thanks.
EDIT:
Nevermind I got this working using:
Code: Select all
\begin{figure}[H]
\centering
\begin{tabular}{m{0.5\linewidth} c m{0.3\linewidth}}
\includegraphics[height=2cm]{AntiSequence.eps} &
$\Longleftrightarrow$ &
\includegraphics[height=2cm]{StartEnd.eps}
\end{tabular}
\caption{Annihilation \& Production}
\label{fig:annihilation}
\end{figure}