Trying to center text vertically on the first column of a 4-column table containing images on the remaining 3 columns. I have as preamble a convenient definition for including three images on a line :
Code: Select all
% COMMAND FOR PUTTING THREE IMAGES SIDE BY SIDE
\newcommand{\threeimg}[3]{\includegraphics{#1} & \includegraphics{#2} & \includegraphics{#3}\\
}
% COMMAND FOR PUTTING THREE LABELS SIDE BY SIDE
\newcommand{\threelabels}[3]{#1 & #2 & #3 \\[2mm]}
Code: Select all
\begin{figure*}[!t]
\centering
\setkeys{Gin}{width=50mm}
\begin{tabular}{m{0.12in}ccc}
& \threelabels{Label 1}{Label 2}{Label 3}
\begin{sideways}Text 1\end{sideways} & \threeimg{image1.png}{image1.png}{image1.png}
\begin{sideways}Text2 \end{sideways} & \threeimg{image1.png}{image1.png}{image1.png}
\end{tabular}
\caption{Caption}
\label{fig:ChangeComp}
\end{figure*}
Thanks in advance for your help.