我的问题非常简单直接。如何为表格元素添加脚注?
\begin{table}
\centering
\label{priority list}
\begin{footnotesize}
\begin{tabular}{|l||l||l|}
\hline
& sample 1& sample 2 \\
\hline\hline
Results\footnote{please put me underneath of this table} & & \\
\hline
\end{tabular}
\end{footnotesize}
\end{table}
答案1
三部分表或者三部分表是一个选项。标准默认是使用\footnotetext
和,\footnotemark
但这些包可以让事情变得更容易。
指某东西的用途书签还建议阅读有关排版专业质量表格的建议。
\documentclass{article}
\usepackage{booktabs,threeparttable}
\begin{document}
\begin{table}
\centering
\footnotesize
\begin{threeparttable}
\caption{Priority List}\label{tab:priority list}
\begin{tabular}{lll}
\toprule
& sample 1& sample 2 \\
\midrule
Results\tnote{a} & & \\
\bottomrule
\end{tabular}
\begin{tablenotes}
\item[a]please put me underneath of this table
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}
编辑
您可以在环境中更改字体tablenotes
。例如,
\begin{tablenotes}\tiny
\item[a]please put me underneath of this table
\end{tablenotes}
您还可以通过加载获得增强的一套设施三部分表这是三部分表。尽管它主要设计用于longtable
,但它也可以增强标准threeparttable
环境。有关详细信息,请参阅文档。