如何让列表项出现在图像的左上角?

如何让列表项出现在图像的左上角?

我附上了一张图片graphicx枚举列表中的包。

\begin{enumerate}
\item
\includegraphics[width=100px]{my_image.png}
\end{enumerate}

列表项编号显示在图像的左下方。我尝试将列表项编号放在图像左上方,并添加一行,但没有成功。

\begin{enumerate}
\item
\newline
\includegraphics[width=100px]{my_image.png}
\end{enumerate}

如何将列表项编号放在图像左上方?

答案1

正如 cmhughes 所建议的那样 应该可以解决您的问题。您必须安装以下软件包:adjustboxcollectbox

一个简单的代码是

\documentclass{article}
\usepackage{graphicx}
\usepackage{adjustbox}

\begin{document}

\begin{itemize}
    \item Achieving lowest possible noise$\rightarrow$Iron-$55$ Spectrum
    \item \includegraphics[scale=0.1]{scope}
    \item \adjustbox{valign=t}{\includegraphics[scale=0.1]{scope}}%This will work just the way you like it
    \item $Fe$ and $Ar:$$Ar$ signal is not clear...
    \item Just to check: move source from center
    \item Expected behaviour
\end{itemize}

\end{document}

输出为

图片用 绘制tikZ。示例取自TeXample.net

相关内容