11

I have a table that has about 130 rows. I tried using the longtable package, but it does not work with two column documents. The table will be starting near the top of the left column, and it should continue on to the right column, and perhaps continue onto the next page as well. Is there are way to get this to work reasonably well in two column documents?

EDIT: The table has 3 columns, and it is narrow enough to fit on one column of a standard two column layout.

donatello
  • 1,723

3 Answers3

4

It depends a bit on the content of the table. If it has only two columns, I would use a list. If each entry is only on one row, you could use tabbing. If there are columns of type "p" you could replace the table by lines with \parboxes (The package eqparbox can help to synchronize their sizes). If you need headers and footers you could look at supertabular.

Ulrike Fischer
  • 327,261
1

supertabular can be made to work with multicols. So I suggest you use supertabular instead of longtable. Or use a list.

0

You could do it by hand using \vsplit. Set the table in a really long vbox, and break up the table one column at a time.

Charles Stewart
  • 21,014
  • 5
  • 65
  • 121