4

Here is the min file:

\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}

With the above codes, the output pdf file doesn't present "footnote test" in table footnote area.

ShreevatsaR
  • 45,428
  • 10
  • 117
  • 149
PHoward
  • 269

1 Answers1

6

The command \footnote is divided into \footnotemark and \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}

Please observe different behaviour of footnotes marked %1 and %2, respectively.

enter image description here

Moriambar
  • 11,466