I have a special table layout in which i want to place figures. The table looks like this:
"-------------------------------------------------" " Figure 1 | Figure 2 |" "----------------| |" " Figure 3 | |" "-------------------------------------------------"
I created this table with the following LaTeX code:
\begin{table*}[t]
\begin{tabular}{l l}
\includegraphics[width=0.35\textwidth]{Figure1} & \multirow{2}
{*}{\includegraphics[width=0.65\textwidth]{Figure2}} \\
\includegraphics[width=0.35\textwidth]
{Figure3}
\end{tabular}
\end{table*}
However when it comes to layouting the table it places the figure somewhere in the vertical center of the multirow cell, like this:
"-------------------------------------------------" " Figure 1 | |" "----------------| Figure 2 |" " Figure 3 | |" "-------------------------------------------------"
How do I get it up to the desired position (same top position as Figure 1)?
