我尝试添加带有文本的图像。我在 Google 上搜索了很多,发现最简单的方法是使用包\wrapfigure
。
实际上,这是一道数学学校练习题,包含答案和几何图形。我不知道这是否重要,但这个练习题是枚举列表的一部分。我不知道为什么,但当我构建代码时,我的图像不在那里。如果我删除包装图并离开,那么它就在那里,但在文本的末尾。
以下是 MWE:
\begin{enumerate}
\item ....
\item ....
\item Here is some text...blah blah ... $E=E_1+E_2+E_3=2\cdot14+2\cdot3+2\cdot3=2\cdot(14+3+3)=2\cdot20=40$.
\begin{wrapfigure}{r}{0.4\textwidth}
\begin{center}
\includegraphics[width=0.35\textwidth]{shape1.png}
\end{center}
\end{wrapfigure}
\end{enumerate}
答案1
这个答案基于大卫卡莱尔的评论。
首先,我通过添加编译所需的文件的开头和结尾将您的代码转换为 MWE:
\documentclass{article}
\usepackage{graphicx}
% omit the package for wrapfigure as I'm not going to use it
\begin{document}
...
\end{document}
我还替换了您使用的图像,tiger
因为该图像包含在所有标准 TeX 发行版中。
设置minipage
环境,您可以将图像放在文本旁边,如下所示:
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\noindent
\begin{minipage}{.6\linewidth}
\begin{enumerate}
\item ....
\item ....
\item Here is some text...blah blah ... $E=E_1+E_2+E_3=2\cdot14+2\cdot3+2\cdot3=2\cdot(14+3+3)=2\cdot20=40$.
\end{enumerate}
\end{minipage}
\begin{minipage}{.4\linewidth}
\centering
\includegraphics[width=0.35\textwidth]{tiger}
\end{minipage}
\end{document}