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}
tabus documentation. The maintainer is Florent Chervet. Does this package have a bug tracker? – Toscho Apr 25 '13 at 14:42hyperrefaftertabuand don't usetabuinsidetableas it is a float. – cacamailg Apr 25 '13 at 17:29threeparttable(orthreeparttablex), which I found to be the best option. – cacamailg Apr 25 '13 at 17:39tabuwas supposed to be intable;tabufor example doesn't support\caption. – roelandvanbeek Apr 25 '13 at 19:37\captionofinstead of\caption. I will try to provide an example. – cacamailg Apr 25 '13 at 22:41