I was hoping someone could point out how to put graphics inside tables such that text in column 2 is vertically aligned next to an image in column 1. My current efforts have the first line of text aligned with the bottom of the table, and further lines added below that.
MWE:
Code: Select all
\documentclass{article}
\usepackage{times}
\usepackage{epsfig}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{booktabs}
\usepackage{verbatim}
\usepackage{array}
\begin{document}
\title{Foo}
\begin{tabular}{lp{0.6\textwidth}}
\includegraphics[width=0.3\textwidth]{myimage} &
Text next to the image. Lots and lots and lots and lots and lots and
of it. \\
\end{tabular}
\end{document}