假设我有这样的东西
text text text
\begin{mywraptable}{r}{6cm}
my beautiful table
\end{mywraptable}
text text text
现在我定义以下自定义环境:
\newenvironment{mywraptable}[3]{%
\begin{wraptable}{#1}{#2}
\caption{#3}
}{%
\end{wraptable}
}
为什么下面的内容不能正确地与周围的文本“换行”?
text text text
\begin{mywraptable}{r}{6cm}{hello}
my beautiful table
\end{mywraptable}
text text text
答案1
我发现这个问题与定义自定义 wrapfig 环境并能通过\begin{wraptable}
用\wraptable
和\end{wraptable}
替换 来解决问题\endwraptable
。