如何将一个表格放在双列布局中另一个表格的后面?

如何将一个表格放在双列布局中另一个表格的后面?

我的页面是两列布局,我想在右列放置两个表格,如下所示:

text here    Table 1 goes here
text here
text here    Table 2 goes here
text here

当我使用时wraptable,表 1 的位置准确,但表 2 跳转到最后一行文本下方的左列。如果我删除wraptable表 2,这两个表会相互覆盖(重叠)。

我怎样才能使两个表格在右列对齐?

答案1

您可能需要调整源中表格环境的位置以避免出现左列,但除此之外,它应该不需要特殊标记就可以工作:

在此处输入图片描述

\documentclass[twocolumn]{article}

\def\a{One two three four five six even eight nine ten. }
\def\b{Red. \a\a Blue \a\a Green. \a\a\a}

\begin{document}

\listoftables


\b\b\b\b\b\a\b\b\b

\begin{table}\centering
\begin{tabular}{cc}1&2\\3&4\\5&6\end{tabular}
\caption{a table}
\end{table}
\begin{table}\centering
\begin{tabular}{cc}11&22\\33&44\\55&66\end{tabular}
\caption{another table}
\end{table}

\b\b\b

\b\b\b\b\b\b

\end{document}

相关内容