Notas de tabela abrangendo duas páginas

Notas de tabela abrangendo duas páginas

Quero que as notas da tabela comecem na página 1 e continuem na página 2 (assim como a própria tabela que continua na próxima página).

Se as notas da tabela forem muito longas para a primeira página, o texto completo das notas da tabela será exibido na página seguinte. Então, como posso forçá-los a começar na página 1 e continuar na página 2?

Agradeço antecipadamente.

\documentclass[preprint, authoryear]{elsarticle}
\usepackage[left=2.5cm,right=2.5cm,top=2.5cm,bottom=2cm]{geometry}
\usepackage{longtable}
\usepackage{threeparttablex}
\usepackage[]{caption}
\usepackage{lipsum}
\captionsetup[table]{
    labelsep = newline, labelfont={small}, justification=centering, textfont={bf,small}
}
\newcommand\Tstrut{\rule{0pt}{2.4ex}}
\begin{document}
\lipsum[1-5]\par
\footnotesize
\begin{ThreePartTable}
    \begin{TableNotes}[para, flushleft]
\lipsum[1-2]
    \end{TableNotes}
    \centering
    \begin{longtable}{l r r r r }
        \caption{Title}\\
        \insertTableNotes\\
        \hline
        \hline
        &XXX&XXX&XXX&XXX\Tstrut\\
        \hline
        \underline{\textit{Panel A}}&&&&\Tstrut\\
        \underline{\textit{vvv}}&&&&\\
        ZZZ&&&&\Tstrut\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        \underline{\textit{ccc}}&&&&\\
        ZZZ&&&&\Tstrut\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        \underline{\textit{Panel B}}&&&&\Tstrut\\
        \underline{\textit{vvv}}&&&&\\
        ZZZ&&&&\Tstrut\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        \underline{\textit{ccc}}&&&&\\
        ZZZ&&&&\Tstrut\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        \hline
        &YYY&YYY&YYY &YYY\Tstrut\\
            \hline
        \underline{\textit{Panel A}}&&&&\Tstrut\\
        \underline{\textit{vvv}}&&&&\\
        ZZZ&&&&\Tstrut\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        \underline{\textit{ccc}}&&&&\\
        ZZZ&&&&\Tstrut\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        \underline{\textit{Panel B}}&&&&\Tstrut\\
        \underline{\textit{vvv}}&&&&\\
        ZZZ&&&&\Tstrut\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        \underline{\textit{ccc}}&&&&\\
        ZZZ&&&&\Tstrut\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        ZZZ&&&&\\
        \hline
        \hline
    \end{longtable}
\end{ThreePartTable}\label{1234}
\end{document}

informação relacionada