is there a way to create a table with 2 columns, in the left column should be some text, in the right column should be a picture.
The problem is - to align both to the left, top corner. The image seems to be inserted as an inline object, so it pushes the text down, from the top.
_____________________
| |
| |
Some text is pushed down | |
What i want is:
Some text is pushed down _____________________
| |
| |
| |
Here is the code:
\begin{tabular}{\textwidth}{ l l }
Some text & \includegraphics{images/image.png} \\
\end{tabular}

\usepackage[export]{adjustbox}you can use most keys directly for\includegraphics, i.e.\includegraphics[height=3cm,width=4cm,valign=t]{p}. Theset depthkey might also be useful if the official depth should be changed afterwards. A package-less alternative tovalign=Twould be\raisebox{-\height}{\includegraphics[..]{..}}. – Martin Scharrer Sep 30 '11 at 17:34\adjustimage{<key=value>}{<filename>}as a shortcut for\adjustbox{<key=value>}{\includegraphics{<filename>}}. You can place all keys for\includegraphicsalso into\adjustbox. – Martin Scharrer Nov 09 '11 at 15:19