如何将表格中的脚注按页尾的两列进行排序?

如何将表格中的脚注按页尾的两列进行排序?

我遇到了一个问题,在网上搜索了两天的解决方案,但一直没有找到。我的论文中有几个表格,其中有很多脚注。我读过关于表格脚注的问题,所以我使用了 savenotes 选项以及脚注包来解决这个问题。但是,由于我的几个表格中有太多脚注,将它们排列在页面底部的一列中看起来有点奇怪。所以我决定使用 dblfnote 包使用两列。但是如果我这样做,savenotes 命令未定义,从而导致错误。有没有解决方案来处理表格中的脚注并将它们排列在页面末尾的两列中?

\usepackage{footnote}
\begin{document}
\begin{savenotes}
\begin{table}[H]
\centering
\begin{tabular}{llll}
\toprule
\textbf{1} & \textbf{2} & \textbf{3} & \textbf{4} \\
\midrule
\setlength\extrarowheight{5pt}
a & 12.87 \% & 0.50 \%& 1.21 \%\\
b & 12.14 \% &0.47 \% & 0.58 \%\\
c\footnote{\label{c} footnote } & 0.36 \% & 0.12 \% & 0.03 \% \\
d\footnote{\label{b} footnote d} & 0.35 \%& 0.23 \% & 0.14 \% \\
\addlinespace
\bottomrule
\end{tabular}%
\caption{caption}
\label{tab:test}%
\end{table}%
\end{savenotes}
\end{document}`

相关内容