[Tex/LaTex] Footnote in tabu table not shown

footnotestablestabu

Which package should I use for proper footnote handling in tabu tables? I thought tabu was supposed to do everything tabularx does, but footnotes do not show up in tabu tables.

Working (using tabularx):

\documentclass{article}
\usepackage{tabularx}
\begin{document}
\begin{tabularx}{5cm}{c}
Cell \footnote{Footnote}
\end{tabularx}
\end{document}

Not working (with tabu):

\documentclass{article}
\usepackage{tabu}
\begin{document}
\begin{tabu}{c}
Cell \footnote{Footnote}
\end{tabu}
\end{document}

Best Answer

\documentclass{article}
\usepackage{tabu}
\usepackage{hyperref}   % this line is added.
\begin{document}
\begin{tabu}{c}
Cell \footnote{Footnote}
\end{tabu}
\end{document}

As @cacamailg said in comment, "It works if you load hyperref after tabu". Thank you, @cacamailg.

Related Question