I'm using the code given below:
\documentclass[11pt]{report}
\usepackage[english]{babel}
\usepackage{lipsum}
\begin{document}
\lipsum[1]\footnote{real footnote}
\begin{table}[!ht]\centering
\caption{Title}
\begin{minipage}[t]{\textwidth}
\centering\small
\begin{tabular}{ll}
A & B \\
name & age \footnotemark \\
size & height \footnotemark \\
\end{tabular}
\footnotetext[2]{table note}
\footnotetext[4]{table note}
\end{minipage}
\end{table}
\lipsum[1]
\end{document}
and I have three questions:
does this comply with English typographic rules?
if yes, why does
\footnotetext[2]{table note}yield aband2for the numbering?should not I control the width of the minipage to have the table notes appear right under the table and not on the left as in the current version?
minipagefootnotes, but you can undoubtedly change that. See here for how to do it. – ienissei May 14 '12 at 12:10\makeatletter \setlength{\skip\@mpfootins}{5.5pt} \makeatother. The second argument can be any length you like. – ienissei May 17 '12 at 20:59