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}