表にfootnote(注釈)を入れる
プリアンブルに"\usepackage{footnote}"、表の前後に"\begin{savenotes}〜\end{savenotes}"を入れる事で、表のセルに注釈を挿入できる。
サンプル
LaTeXソース
\documentclass{jsarticle} \usepackage{footnote} \begin{document} \begin{savenotes} \begin{table}[htbp] \caption{footnoteが出る表} \label{test1} \begin{center} \begin{tabular}{|c||l|l|} \hline 項目 & 内容 & 備考 \\ \hline \hline 1番 & テスト2 & footnoteが入る\footnote{これは表示される} \\ \hline \end{tabular} \end{center} \end{table} \end{savenotes} \end{document}