答案1
您必须\pagebreak
时不时地添加一个。
\documentclass{article}
\usepackage{longtable,lipsum}
\begin{document}
\begin{longtable}{|l|c|c|c|c|c|}
\hline
\multicolumn{6}{|p{10cm}|}{1. \lipsum[1-4] } \\ \hline
\pagebreak
\hline
\multicolumn{6}{|p{10cm}|}{5. \lipsum[5-8] } \\ \hline
\end{longtable}
\end{document}
您longtable
可以运行逐页链接部分表格的页眉和页脚。
\documentclass{article}
\usepackage{longtable,lipsum}
\begin{document}
\begin{longtable}{|l|c|c|c|c|c|}
\hline
\multicolumn{6}{|p{10cm}|}{\Large Main heading } \\
\hline
\endfirsthead
\multicolumn{3}{l} {\footnotesize \emph{ \ldots{} from previous page.}} \\
\hline
\multicolumn{6}{|p{10cm}|}{ \Large Main heading } \\
\hline
\endhead
\multicolumn{6}{r}{\footnotesize \emph{to be continued in the next page \ldots{} }} \\
\endfoot
\endlastfoot
\multicolumn{6}{|p{10cm}|}{1. \lipsum[1-4] } \\ \hline
\pagebreak
\multicolumn{6}{|p{10cm}|}{5. \lipsum[5-8] } \\ \hline
\end{longtable}
\end{document}