I've got the following problem.
I'm trying to format a table which needs footnotes. Thats easy.
But I also need multiple references to the same footnote. Not so easy.
At last I would prefer to use custom marks. Not so easy in a minipage.
I produced the following minimal example:
Code: Select all
\documentclass{article}
\usepackage{booktabs}
\begin{document}
Random text\footnote{This is footnote 1}.
\begin{table}[h!]
\begin{minipage}{\textwidth}
\centering
\begin{tabular}{@{}cl@{}}
\toprule
Header1 & Header2 \\
\midrule
Dummy & Foo\footnotemark[R] \\
More Dummy & Bar\footnotemark[*] \\
Even more & FooBar\footnotemark[*]\footnotemark[R] \\
Last Dummy & Baz\footnotemark[R] \\
\bottomrule
\end{tabular}
\footnotetext[*]{My footnote for *}
\footnotetext[R]{My footnote for R}
\end{minipage}
\caption{Caption of table}
\end{table}
Some text\footnote{This is footnote 2}.
\end{document}

Any ideas? Would be great!
N.B. The part on custom marks isn't the most important. But I don't even get the default (a,b,c,...) marks working.
jocom