在双列文档中,如何让表格延伸至整个宽度?

在双列文档中,如何让表格延伸至整个宽度?

我正在处理一份文档,该文档的页面向下包含两列文本,就像许多科学会议论文集一样。但是,我希望表格能够横跨整个页面的宽度,因为它太宽了,无法容纳在一列中。我该怎么做?

答案1

这可能取决于您的文档类别,但通常的方法是使用table*代替table

\documentclass[twocolumn]{article}
\usepackage{lipsum}
\begin{document}
\begin{table*}
\centering
\begin{tabular}{|c|}
\Large This table is so wide that it needs to use both columns.
\end{tabular}
\end{table*}
\lipsum[1-10]
\end{document}

相关内容