I'm trying to do a table with sideways text and a figure in the same row of the table. But the row don't adjust to the longer text, or if I use the {\renewcommand \arraystretch{1.25}} the 3rd and 4rd column text go to the bottom..
This is the code i'm trying to use, but any solution that I tried until now didn't work:
Code: Select all
\begin{table}[htbp!]
\centering
\begin{tabular}{|c|c|c|c|}
\hline
\multirow{3}{*}{\begin{sideways}ABC \end{sideways}} & \multirow{3}{*}{\includegraphics[width=9.5cm,height=4.8cm]{Images/....eps}} & A & B \\
& & C & D \\
& & E & F \\
\hline
\end{tabular}
\end{table}
I also would like to draw a horizontal line just in columns 3 and 4...
Thank you
Ricardo