[Tex/LaTex] Image Dropping Down in MultiRow Table

graphicsmultirowvertical alignment

I am trying to build a table of images in Latex. Two of my images are portrait, two are landscape. My end goal, is to have them look like this:

|   | B |   |
| A |---| D |
|   | C |   |

With my code being:

\begin{tabular}{|c|c|c|}

\multirow{2}{*}{\includegraphics[width=0.25\textwidth]{./2_ACES/images/widiStructures/h_back.eps}} & \includegraphics[width=0.25\textwidth]{./2_ACES/images/widiStructures/h_side.eps} & \multirow{2}{*}{\includegraphics[width=0.25\textwidth]{./2_ACES/images/widiStructures/h_front.eps}} \\
& \includegraphics[width=0.25\textwidth]{./2_ACES/images/widiStructures/h_side2.eps} & \\ \hline

\end{tabular}

However, the end result of my table is

|   | B |   |
|   |---|   |
| A | C | D |
  A       D

Where the A and D image drop below the bottom of the table!

Best Answer

How about just using minipage:

\documentclass{article}

\newcommand*{\WideFig}{\fbox{\parbox{1.5in}{WIDE \\ FIGURE}}}%
\newcommand*{\TallFig}{\fbox{\parbox{1.0in}{.\\ VERY\\ VERY\\ VERY\\ VERY \\ TALL \\ FIGURE\\ }}}%

\begin{document}
\begin{figure}
  \begin{minipage}{0.30\textwidth}
    \centering
    \WideFig
  \end{minipage}\hfill
  \begin{minipage}{0.35\textwidth}
    \centering
    \TallFig

    \TallFig
  \end{minipage}\hfill
  \begin{minipage}{0.30\textwidth}
    \centering
    \WideFig
  \end{minipage}\hfill
\end{figure}
\end{document}

enter image description here

Related Question