禁忌中的许多地方都引用了相同的脚注

禁忌中的许多地方都引用了相同的脚注

我尝试在禁忌的许多地方引用相同的脚注,并使用这个作为参考,表格环境中对同一脚注的多次引用

这是我的代码:

\documentclass{article}
\usepackage{scrextend}
\usepackage{hyperref}
\usepackage{tabu}
\begin{document}
\begin{table}[t]
\caption{Input parameters}
\tabulinesep=1.2mm
\begin{tabu} to\linewidth {|X[2l] X[2l]|}
\hline 
\multicolumn{2}{|c|}{Test} \\ 
A & B \footnote{\label{first}first footnote}\\ 
C & D \footref{first}\\
\hline 
\end{tabu}
\end{table}
\end{document}

我得到的结果如图所示,页面底部没有任何脚注。

错误1

但是,如果我使用如下代码:

\documentclass{article}
\usepackage{scrextend}
\usepackage{hyperref}
\usepackage{tabu}
\begin{document}
\begin{tabu} to\linewidth {|X[2l] X[2l]|}
\hline 
\multicolumn{2}{|c|}{Test} \\ 
A & B \footnote{\label{first}first footnote}\\ 
C & D \footref{first}\\
\hline 
\end{tabu}
\end{document}

我没有遇到任何问题(页面底部有脚注)。

无错误

我也尝试过cleveref了但是得到了??。

我的第一个代码有什么问题吗?

相关内容