I would to format an image inside a tabular environment and part of a multirow. This is my code below but the image of the top left falls outside the cell space. See http://www.virtuality.gr/Capture.JPG.Any suggestions ?
On a second note, how do I add cell spacing around (all sides) the images on the right ?
Thank you for any help.
Code: Select all
\documentclass{article}
\usepackage{multirow, multicol, array}
\usepackage[dvips]{graphicx}
\begin{document}
\begin{tabular}{|c|c|}
\hline
\parbox{200pt}{\multirow{2}{*}{\includegraphics[width=200pt]{noIcon.eps}}}
& \parbox{200pt}{\includegraphics[trim=0 128 0 0, clip, width=200pt]{noIcon.eps}} \\
\cline{2-2}
{} & \parbox{200pt}{\includegraphics[trim=0 0 0 128, clip, width=200pt]{noIcon.eps}} \\
\hline
\parbox{200pt}{\centering ABC} & \parbox{200pt}{\centering DEF} \\
\hline
\end{tabular}
\end{document}