longtable \endfirsthead 和 \endhead 未按预期工作

longtable \endfirsthead 和 \endhead 未按预期工作

考虑这个脚本:

\documentclass{report}
\usepackage{lipsum}
\usepackage{longtable}
\begin{document}
\lipsum[1-3]
\lipsum[4][1-12]

%another paragraph                                                                                                                                                                                          
\begin{longtable}{lr}
  \caption{\lipsum[1][1-3]}\\*
  \label{tab:results}\\*
  \hline
  A&B\\
  c&D\\
  E&F\\
  A&B\\
\endfirsthead
\caption[]{Continued.}
\endhead
  c&D\\
  E&F\\
  A&B\\
  c&D\\
  E&F\\
  A&B\\
  c&D\\
  A&B\\
  c&D\\
  E&F\\
  A&B\\
  c&D\\
  A&B\\
  c&D\\
  E&F\\
  A&B\\
  c&D\\
\end{longtable}
\end{document}

\endfirsthead和的联合实现\endhead可以很好地跨页拆分表格(将长表标题文本放在后续页面上):

在此处输入图片描述

但是,当我取消注释时,%another paragraph%出现了一个不合适的“继续”:

在此处输入图片描述

什么地方出了问题以及怎样修复该问题?

相关内容