表格(页面宽度)有多栏?

表格(页面宽度)有多栏?

我正在写一篇科学论文(双列格式),我需要在一个有很多列的表格中显示一些结果,所以我必须在页面底部放置一个页面宽度的表格。我该怎么做?

答案1

除了使用\documentclass[twocolumn]{article},您还可以使用包来控制何时开始和结束两列,multicol如下所示

\documentclass{article}

\usepackage{multicol}
\setlength{\columnsep}{20pt}  %adjust as needed
\setlength{\columnseprule}{0.01pt} %adjust as needed
\renewcommand{\columnseprulecolor}{\color[rgb]{0.6,0.6,0.6}} %adjust as needed

\begin{document}

\begin{multicols}{2}
text
\end{multicols}

\begin{tabular}{....} %this will now use the full page
..........
\end{tabular}

\begin{multicols}{2}
text
\end{multicols}

\end{document}

相关内容