I would like to create a long "tabular" list which stretches over multiple pages.
The natural solution to it would be to use "longtable", "supertabular", "xtab" or the likes. The issue is that, as I understand it, each one of these environments is equivalent to "tabular" and "table" together, i.e. they give a number to the table and so on. Specifically: normally for a small table I would do:
Code: Select all
\begin{table}
\begin{tabular}{rcc}
\end{tabular}
\end{table}
Code: Select all
\begin{longtable}{rcc}
\end{longtable}