Spanning a matrix in LaTeX over two pages
I have a matrix with more than 80 rows. How can I tell latex that I want it to continue over to the next page rather than stop showing the remaining after it has reached the end of the page?
Perhaps I should add that the matrix is of the following nature:
\begin{table}[H]
\[
\bordermatrix{
~ & 1 & 2 & 3 & 4 & 5 & 6 \cr
1 & 0.0741 & 0.0741 & 0 & 开发者_开发知识库0 & 0.0741 & 0.7778 \cr
2 & 0.2097 & 0.0806 & 0.0081 & 0.0323 & 0.0403 & 0.629 \cr
etc...
Thanks andreas
Have a look at the longtable
package. Here is the manual.
Try \usepackage{longtable}
then replace \begin{tabular}
with \begin{longtable}
.
精彩评论