包裹图后的文本位置不对

包裹图后的文本位置不对

使用 {wrapfigure} 并选择要换行的行数后,新段落仍然表现得像我告诉它继续换行一样。我肯定这听起来很令人困惑,下面是一个例子。我该如何修复我的段落,使其在 {wrapfigure} 之后恢复正常?

\documentclass[10pt]{article}
\usepackage{wrapfig}
\usepackage{graphicx}
\usepackage{lipsum}
\begin{document}
\lipsum
\begin{wrapfigure}[18]{l}{0.5\textwidth}
    \begin{center}
        \includegraphics[width=61mm]{example-image-a}
    \end{center}
    \caption{this is my caption}

\end{wrapfigure}

\section*{Study Site}
\lipsum

\end{document}

pdf 看起来是这样的

答案1

之前有真实文本:

下一个代码与您的问题有同样的问题:

\documentclass[10pt]{article}
\usepackage{wrapfig}
\usepackage{graphicx}
\usepackage{lipsum}

\begin{document}
After using {wrapfigure} and choosing the number of lines to wrap, a new paragraph still behaves as 
if I told it to
continue wrapping. I'm sure that sounds confusing, here is an example. How can I fix my paragraphs to go 
back to normal after {wrapfigure}?

\begin{wrapfigure}[15]{l}{.5\textwidth} 
    \begin{center}
        \includegraphics[width=61mm]{example-image-a}
    \end{center}
    \caption{this is my caption}
\end{wrapfigure}



\section*{Study Site}
\lipsum

\end{document}

输出:

在此处输入图片描述

通过删除换行图前的空行,问题就解决了,因为我们的图形位于前一段内。(它将被移动到下一个段落,但不会停留在导致特定问题的段落之外)

输出:

在此处输入图片描述

相关内容