[Tex/LaTex] Vertical alignment in the tables with pictures (epsfig)

graphicstablesvertical alignment

I have a table with two columns. The column on the left contains a picture (\epsfig) the column on the right contains the description.

The description starts on the same height as the lower end of the epsfig

I would like the description to start on the same height as the beginning of the epsfig.

How can I achieve this?

Best Answer

This should work within a table. It aligns the picture and the text.

\documentclass{article}
\usepackage[english]{babel}
\usepackage{graphicx,booktabs,blindtext}

\begin{document}
\begin{tabular}{cc}
\hline
%raise the text and put it in a box
\raisebox{-\height}{\parbox{5cm}{%
\blindtext%
}}
% raise the picture \rule{}{} is a dummy for \includegraphics...
& \raisebox{-\height}{\rule{4cm}{4cm}}\\\addlinespace
\hline
\end{tabular}

\end{document}