这是最小文件:
\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
。