Well, that sounds so simple, but I spent hours searching on Google, and I just can't find a solution, it's not difficult. I want to create a table in which there are images and text. I want each table row to have the same height. And I want the text to always start at the top. i.e.
\begin{tabular}{l l}
some text & some text and some more text...\\ %both starting at the same height.
\includegraphics{aImage.eps} & (*)Some text... %both starting at the same height.
\end{tabularx}
In my intuition, the beginning of the text in an asterisk (*) should be vertically aligned at the top of aImage, but this is not the case, and I cannot figure it out correctly. Adding [b] or [t] does not help. That I’m completely wrong, because I can’t be the only person who wants this.
source
share