使用表格时章节标题后的空白页

使用表格时章节标题后的空白页

我遇到了一个问题,当章节中只有表格时,标题页后面会出现一个空白页。所以章节有两页,第一页是空白的,另一页是表格所在的位置。有什么建议吗?

\chapter*{List of A}

\addcontentsline{toc}{chapter}{List of A}

\begin{table*}[H]
  \centering
  \begin{tabular}{c c c c}

    \textbf{XXX} &  XXX  \\
    \textbf{XXX} &  XXX \\

  \end{tabular}
\end{table*}

答案1

table*列浮动总是位于下一个页。如果您想要在原本为两列的文档中添加一列附录,请使用

\onecolumn
\chapter*{List of A}
\addcontentsline{toc}{chapter}{List of A}

\begin{center}
  \begin{tabular}{c c c c}
    \textbf{XXX} &  XXX  \\
    \textbf{XXX} &  XXX \\
  \end{tabular}
\end{center}

另外:您不能使用table*Hh

相关内容