tabularx 中的脚注不起作用(带有 hyperref)

tabularx 中的脚注不起作用(带有 hyperref)

这是最小文件:

\documentclass{article}
\usepackage{tabularx}[1999/01/07] % v2.07
\usepackage{hyperref}% 2012/10/15 v6.83k
\listfiles
\begin{document}

\begin{minipage}[t]{.5\linewidth}
\begin{tabularx}{\linewidth}{c}
text\footnote{footnote test} \\
\end{tabularx}
\end{minipage}

\end{document}

使用上述代码,输出的pdf文件不会在表格脚注区域显示“脚注测试”。

答案1

该命令\footnote分为\footnotemark\footnotetext

\documentclass{article}
\usepackage{tabularx}[1999/01/07] % v2.07
\usepackage{hyperref}% 2012/10/15 v6.83k
\listfiles
\begin{document}

\begin{minipage}[t]{.5\linewidth}
\begin{tabularx}{\linewidth}{c}
text\footnote{footnote test} 
and text\footnotemark %1
and text\footnotemark %2
\\
\end{tabularx}
\footnotetext{second} %1
\end{minipage}
\footnotetext{third} %2

\end{document}

请观察分别标记为%1和的脚注的不同行为%2

在此处输入图片描述

相关内容