脚注包的 LTRfootnote 和 savenotes

脚注包的 LTRfootnote 和 savenotes

大家好,我正在尝试在脚注包的 savenotes 环境中添加 LTRfootnote,我尝试了 \footnotemark \LTRfootnotetext 方法,但脚注区域中的编号是错误的。所以我转向 savenotes 环境,当您在 savenote 环境中使用 \footnote 时一切都很好,但当我切换到 LTRfootnote 时,脚注标记在那里,但脚注文本丢失了。谢谢你的帮助。

\documentclass{article}
\usepackage{xepersian}
\settextfont[Scale=1.2]{XB Niloofar}
\setlatintextfont[Scale=1.2]{CMU Serif}
\setlatinsansfont[Scale=1.1]{CMU Serif}
\setmathsfdigitfont[Scale=1.1]{CMU Serif}
\usepackage{footnote}
\makesavenoteenv{tabular}
\makesavenoteenv{table}
\begin{document}
\begin{savenotes}
\begin{table}
\centering
\footnotesize
\caption[text]{text}
\label{tab:3}
\begin{tabular}{p{8cm}p{6cm} }
    text&text\\
    \hline
    text\LTRfootnote{non-immunogenic}&text\\
    \hline
\end{tabular}
\end{table}
\end{savenotes}

some other text\LTRfootnote{some other FN}
\end{document}

enter image description here

相关内容