在我的文章中,我需要重新定义,\par
以便在每个段落的开头重置一些变量。然后我发现这wrapfigure
不起作用。下面的示例代码
\documentclass{article}
\usepackage{lipsum}
\usepackage{ytableau}
\usepackage{wrapfig}
\let\paR=\par \def\par{\relax\paR}
\begin{document}
\lipsum[1]
\begin{wrapfigure}{r}{0pt}
\begin{ytableau}1&2&3&4\\5&6&7\\8\\9\end{ytableau}
\end{wrapfigure}
\lipsum[2]
\end{document}
生成
并且无法将更多段落放在图下。我还看到以下消息:wrapfigure used inside a conflicting environment on input line 12
和
Stationary wrapfigure forced to float on input line 16
。wrapfigure
在这种情况下我该怎么做?或者一般来说,我该如何将文本环绕在图形周围?