Is there a way to make eledmac footnotes available in tabular environments?
The \savenotes and \makesavenoteenv commands from footnote.sty don't work here anymore.
In the following MWE, footnotes inside the table just don't appear. The label is set, but not the foornote.
\documentclass{scrartcl}
\RequirePackage{eledmac}
\newseries{T}
\let\footnote\footnoteT
\begin{document}
Foo bar\footnote{This footnote works.}
\begin{tabular}{ll}
A & B \\
C\footnote{This footnote doesn't appear.} & D \\
\end{tabular}
\end{document}
I'm using eledmac's footnote engine for familiar footnotes. (And I cannot switch away from eledmac.)
edtabularlis not as functional astabular. Especially, I needp-columns. And alsolongtables. I will post my solution as a separate answer. – LaTechneuse Jan 29 '15 at 18:17