如何让表格注释出现在跨多页的表格中标记的页面上?

如何让表格注释出现在跨多页的表格中标记的页面上?

我的表格平移到多个页面上。我在第二列、第 30 行交叉处的元素上放置了一个表格注释标记(假设标记出现在第二页上),并且该标记的表格注释将显示在最后一页的表格末尾,而不是这样,我怎样才能让表格注释出现在标记的第二页上。一般来说,我怎样才能让表格注释出现在标记的页面上?

梅威瑟:

\documentclass[12pt,hidelinks]{scrreprt}
\usepackage{tabularray}
\begin{document}
    \begin{longtblr}[
        caption = {A Long Long Long Long Long Long Long Table},
        entry = {Short Caption},
        label = {tblr:test},
        note{a} = {It is the first footnote.},
        note{$\dag$} = {It is the second long long long long long long footnote.},
        remark{Note} = {Some general note. Some general note. Some general note.},
        remark{Source} = {Made up by myself. Made up by myself. Made up by myself.},
        ]{
            colspec = {XXX}, width = 0.85\linewidth,
            rowhead = 2, rowfoot = 1
        }
        \hline
        Head & Head & Head \\
        \hline
        Head & Head & Head \\
        \hline
        Alpha & Beta & Gamma \\
        \hline
        Epsilon & Zeta\TblrNote{a} & Eta \\
        \hline
        Iota & Kappa\TblrNote{$\dag$} & Lambda \\
        \hline
        Nu & Xi & Omicron \\
        \hline
        Rho & Sigma & Tau \\
        \hline
        Phi & Chi & Psi \\
        \hline
        .....
        \hline
        Alpha & Beta & Gamma \\
        \hline
        Epsilon & Zeta & Eta \\
        \hline
        Iota & Kappa & Lambda \\
        \hline
        Nu & Xi & Omicron \\
        \hline
        Rho & Sigma & Tau \\
        \hline
        Phi & Chi & Psi \\
        \hline
        Foot & Foot & Foot \\
        \hline
    \end{longtblr}
\end{document}

相关内容