我已经阅读并尝试了各种答案的解决方案,但我还没有找到解决问题的方法;在我的文档中,左侧有一个图像,右侧图像旁边有一个等式,图像和等式下方有一个新的部分。
\documentclass[12pt][report]
\usepackage{graphicx}
\usepackage{mathptmx}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{wrapfig}
\begin{document}
\subsubsection{My first section}
\begin{wrapfigure}{l}{0.40\textwidth}
\centering
\includegraphics[width=0.40\textwidth]{triangular.png}
\caption{Triangular MF}
\end{wrapfigure}
\begin{equation}
triangle(x; a,b,c)=\begin{cases}
0, x<a.\\
\dfrac{x-a}{b-a}, a \leqslant x \leqslant b.\\
\dfrac{c-x}{c-b}, b \leqslant x \leqslant c.\\
0, c \leqslant x
\end{cases}
\end{equation}
\subsection{A section the goes directly under the image}
\end{document}
但是,页面左侧的图像下方似乎有太多空白,而我的部分写在右侧。
我尝试使用\begin{wrapfigure}[3]{L}{0.40\textwidth}
,当图像下方有普通文本时,它运行良好,但是当将部分直接放在图像下方时,它不起作用。
我怎样才能将我的部分直接定位在图像及其标题下方?或者我怎样才能删除图像下方的空白并继续从左到右正常书写?