Have 3 images two (Image 1 & 3) that are square and one (Image 2) that is vertically long. I would like to stack the square images on the left side and the long image on the right. I tried to do this with a tabular environment inside a figure environment and then use multirow in the right column, but the alignment of the right image is not centering itself in the right column.
I tried to do this with the following code:
Code: Select all
\begin{figure}[p!] \centering
\begin{tabular}{cc}
\subfloat[Tantalum Press]{\label{Tapress}\includegraphics[width=0.30\textwidth]{Tapress}} & \multirow{2}{*}{\subfloat[Arc welder]{\label{Arcweld}\includegraphics[width=0.45\textwidth]{Arcweld}}} \\
\subfloat[Copper blocks with steel "clamps"]{\label{Cublock}\includegraphics[width=0.30\textwidth]{Cublock}} &
\end{tabular}
\isucaption{CAPTION GOES HERE}
\end{figure}
Please help me fix this code, I have been trying to fix it for 5 hours now.