如何为表格标题添加表格注释?
就像是
\begin{table}
...
\caption{...\tnote{1}.}
...
\begin{tablenotes}
\item [1] : blabla.
\end{tablenotes}
\end{table}
不起作用,因为标题后没有添加“1”来引用表格注释 - 这是按预期写的。
答案1
它似乎工作得很好,因为Bernard 提到:
\documentclass{article}
\usepackage{threeparttable,booktabs}
\begin{document}
\begin{table}
\begin{threeparttable}
\caption{\dots then\tnote{3}\dots.}
\begin{tabular}{cc}
\toprule
a\tnote{1} & b\tnote{2}\\\midrule
asdf;sd & asfjgso \\
asdvn;szxc & qwetqwrnvwe\\
\bottomrule
\end{tabular}
\begin{tablenotes}
\item [1] : blabla.
\item [2] : waffle.
\item [3] : after.
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}
虽然我显然不会把 Note 3 放在 Note 1 之前……