我正在使用Latex创建一个文档,我有一些步骤将图像放入文档中。 使用/ item创建步骤,但我想知道如何在每个步骤后准确插入图像。 有人可以帮帮我吗?
答案 0 :(得分:0)
我认为你的困难在于图像保持原样。这可能是因为您在figure
(浮动)环境中放置了一个图形。这似乎很自然,但如果您不添加任何\caption
,则可以使用\includegraphics
将图像按原样粘贴在文档中:
\documentclass{article}
\usepackage{graphicx}
\begin{document}
We follow these steps:
\begin{enumerate}
\item First step
\includegraphics[width = \linewidth, height = 2\baselineskip]{example-image-a}
\item Second step
\includegraphics[width = \linewidth, height = 3\baselineskip]{example-image-b}
\item Third step
\includegraphics[width = \linewidth, height = 3\baselineskip]{example-image-c}
\item Final step
\includegraphics[width = \linewidth, height = 4\baselineskip]{example-image}
\end{enumerate}
\end{document}