在一个长表格中,如果将多行拆分成两页,那么多行中的文本是否可以显示在两页上?

在一个长表格中,如果将多行拆分成两页,那么多行中的文本是否可以显示在两页上?

代码是这样的

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{longtable}
\usepackage{multirow}
\begin{document}

\begin{longtable}{c|c}
\multirow{50}{1cm}{abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd abcd }  & test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
~& test\\
\hline
\end{longtable}

\end{document}

它显示了这一点:

代码显示的内容

我想让第 1 页的最后四行显示在第 2 页上,像这样(图片没有使用多行完成,但因为实际问题更复杂,所以我必须使用多行。):

目标图片

怎么做?

相关内容