Aligning enumerate labels to top of image?
Martin Scharrer's package adjustbox
will help you:
\usepackage{adjustbox}
...
\begin{enumerate}[label=(\alph*)]
\item\adjustbox{valign=t}{\includegraphics[width=10cm]{13a.png}}
\end{enumerate}
The image will be set so that its height will match that of words and it will stick below the baseline.
In case adjustbox
is not available, one can do in a more complicated way; after loading the calc
package
\usepackage{calc}
saying
\raisebox{-\height+\ht\strutbox}{\includegraphics[width=10cm]{13a.png}}
will have the same effect.
Just saw this when looking for myself. I found the easiest way to do this is:
item[a)] \text{}\\
\includegraphics{foo.bar}
No need for extra packages.