我一直尝试使用该wrapfigure
包,但无济于事。wraptable
wrapfig
这适用于文本。
\begin{wrapfigure}{l}{40mm}
\begin{center}
Some random text
\end{center}
\end{wrapfigure}
This should be to the left of the table. \blindtext
但是一旦我添加table
(参见下面的代码),它就会失败。
\begin{wrapfigure}{l}{40mm}
\begin{center}
\begin{table}
\begin{tabular}{l | c}
A & Cell 1 \\ \hline
B & Cell 2 \\ \hline
\end{tabular}
\end{table} \\
Some random text
\end{center}
\end{wrapfigure}
This should be to the left of the table. \blindtext
我究竟做错了什么?
谢谢。
答案1
该table
环境适用于普通浮动表。您不需要将 放在环境tabular
中table
。您应该使用wraptable
环境。
\begin{wraptable}{l}{40mm}
\begin{tabular}{l | c}
A & Cell 1 \\ \hline
B & Cell 2 \\ \hline
\end{tabular}
Some random text
\end{wraptable}
This should be to the left of the table. \blindtext