如何让表格注释在tabularx之后转到下一页?

如何让表格注释在tabularx之后转到下一页?

我有一张tabularx表格,后面跟着一个\floatfoot{...}(来自包floatrow),其中包含一些注释。我的表格放在一页上,但我想让其中的注释\floatfoot{...}转到下一页?我该怎么做?

或者,是否有其他方法可以让我在表格后的下一页上为表格附加一些注释?

这是一个简单的代码:

\documentclass[11pt]{article}

\usepackage{floatrow}
\usepackage{tabularx}
\begin{document}
\begin{table}[htbp]
  \centering
  \caption{- ...}
    \resizebox{1\textwidth}{!}{\begin{tabularx}{1\textwidth}{lYYYcYYY}
    \toprule

 ...A table which fits on one page...

    \bottomrule
    \end{tabularx}}%
  \label{...}%
  \floatfoot{A note that I want it go to the next page.}
\end{table}%
\end{document}


编辑: 因此我找到了以下解决方案。

在表格之后\end{table}我添加\clearpage并写下我的描述,\begin{spacing} ... \end{spacing}如下所示。

  \clearpage
  \begin{spacing}{0.95}{\footnotesize \textbf{Continued from the previous page} - A long caption and description of the table...}
 \end{spacing}

我还将全部表格和说明都放在了其中,\afterpage{...}这样无论文档的其余部分如何,它们都可以粘在一起。

相关内容