\onecolumn 引入空白页

\onecolumn 引入空白页

我使用\onecolumnxtabular 创建了一个两列文档,其中包含一个 1.5 页的两列表格。不幸的是,这会在表格前引入一个空白页。我该如何删除这个空白页?

表结构:

\documentclass{iosart2c}
[...]
\afterpage{
\onecolumn
\label{tab:[...]}
\bottomcaption{[...]}

\begin{xtabular*}{[...]}
[...]
\end{xtabular*}
\twocolumn
}

删除 afterpage 语句没有帮助,而将 bottomcaption 更改为 topcaption 则会创建一个只有标题的页面。

答案1

\onecolumn而不是\twocolumn使用 multicol 包,它是为列的高级使用而编写的。


编辑:

您可以在这里下载该课程:https://searchcode.com/codesearch/view/81111536/。这似乎是在期刊上发表文章的类。所以我们不能修改代码。

可能唯一可以被接受的解决方案是这样的:

\documentclass{iosart2c}
\usepackage{blindtext}

\begin{document}

  \blindtext

  \begin{table*}
    \centering
    \begin{tabular}{ll}
    This is a pretty long tabular cell & And this as well but go to hell.\\
  \end{tabular}
\end{table*}


\end{document}

相关内容