多列中的长表

多列中的长表

我有一张很长的表格,而且由于它占用了很多页面,我想每页打印三列,所以页数太少了。我使用了来自环境

   multicols

但是对输出没有影响。我还得说,我不想把整个文本都做成三柱子,而只想把这个长表放三柱子。我还想在每一部分都重复它的标题。

\documentclass{article}
\usepackage{amsmath}
%\usepackage{booktabs}
%\usepackage{tabularx} % in the preamble
%\usepackage{graphicx}
\usepackage{supertabular}
\usepackage{multicol}
\setlength{\columnsep}{0.25cm}
\begin{document}
\begin{center}


\begin{multicols}{3}

\tablefirsthead{%
\hline
ZERO-POINT&$G$  \\
\hline}
\tablehead{%
\hline
ZERO-POINT&$G$ \\
\hline}
\tabletail{%
\hline
}
\tablelasttail{\hline}
\tablecaption{}
\begin{supertabular}{cc}
\hline
$0$ & smw \\
\hline
$1$ & Hmd \\
\hline
$2$ & rbb \\
    \hline
    $3$ & Elm \\
.
.
.
.
$1350$ & nfv \\ 
    \hline
    $1351$ & wsws \\
   \hline
    \end{supertabular}%
\end{multicols}


\end{center}
\end{document}

相关内容