Сноски в таблице
Внутри среды tabular или array команда \footnote не работает; в ячейке таблицы есть метка сноски, но текст сноски не отображается. Решение — использовать среду minipage, как показано здесь (см. minipage).
\begin{center}
\begin{minipage}{\textwidth} \centering
\begin{tabular}{l|l}
\textsc{Ship} &\textsc{Book} \\ \hline
\textit{HMS Sophie} &Master and Commander \\
\textit{HMS Polychrest} &Post Captain \\
\textit{HMS Lively} &Post Captain \\
\textit{HMS Surprise} &A number of books\footnote{%
Starting with \textit{HMS Surprise}.}
\end{tabular}
\end{minipage}
\end{center}
Внутри minipage, метки сносок являются строчными буквами. Измените это, например, с помощью \renewcommand{\thempfootnote}{\arabic{mpfootnote}} (см. \alph \Alph \arabic \roman \Roman \fnsymbol: Печать счётчиков).
Сноски в предыдущем примере появляются внизу minipage. Чтобы отобразить их внизу основной страницы, как часть обычной последовательности сносок, используйте пару \footnotemark и \footnotetext, и создайте новый счётчик.
\newcounter{mpFootnoteValueSaver}
\begin{center}
\begin{minipage}{\textwidth}
\setcounter{mpFootnoteValueSaver}{\value{footnote}} \centering
\begin{tabular}{l|l}
\textsc{Woman} &\textsc{Relationship} \\ \hline
Mona &Attached\footnotemark \\
Diana Villiers &Eventual wife \\
Christine Hatherleigh Wood &Fiance\footnotemark
\end{tabular}
\end{minipage}% percent sign keeps footnote text close to minipage
\stepcounter{mpFootnoteValueSaver}%
\footnotetext[\value{mpFootnoteValueSaver}]{%
Little is known other than her death.}%
\stepcounter{mpFootnoteValueSaver}%
\footnotetext[\value{mpFootnoteValueSaver}]{%
Relationship is unresolved in XXI.}
\end{center}
Для плавающей table среды (см. table), используйте пакет tablefootnote.
\usepackage{tablefootnote} % in preamble
...
\begin{table}
\centering
\begin{tabular}{l|l}
\textsc{Date} &\textsc{Campaign} \\ \hline
1862 &Fort Donelson \\
1863 &Vicksburg \\
1865 &Army of Northern Virginia\tablefootnote{%
Ending the war.}
\end{tabular}
\caption{Forces captured by US Grant}
\end{table}
Сноска отображается внизу страницы и пронумерована последовательно с другими сносками.
© 2007–2018 Karl Berry
Public Domain Software
http://latexref.xyz/Footnotes-in-a-table.html