如何让文本在表格周围浮动/环绕

如何让文本在表格周围浮动/环绕

我一直尝试使用该wrapfigure包,但无济于事。wraptablewrapfig

这适用于文本。

\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环境适用于普通浮动表。您不需要将 放在环境tabulartable。您应该使用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

相关内容