tabu-issues-for-future-maintainer / tabu

Emergency updates to the LaTeX tabu package
Other
39 stars 17 forks source link

\footnote does not work in tabu enviroment #12

Open nihlete opened 5 years ago

nihlete commented 5 years ago

MWE (lualatex)

\documentclass[12pt,a4paper]{article}

\usepackage{polyglossia}  
\setmainlanguage{english}  

\usepackage{tabu}

\begin{document}
    \begin{tabu}{c c c}
        111 & 222 & 333\\
        text\footnote{Footnote 1} & 222 & 333\\
    \end{tabu}

    123\footnote{Footnote 2}
\end{document}

Footnote 1 does not rendered at the bottom of page. Footnote 2 works as usual.

This behavour can be fixed by adding hyperref package.

...
\usepackage{tabu}
\usepackage{hyperref}
...

Seems like there is some code for handling \footnote, part which working with hyperref is fine, but part with native \footnote is broken,