
如何為表格標題製作表格註解?
就像是
\begin{table}
...
\caption{...\tnote{1}.}
...
\begin{tablenotes}
\item [1] : blabla.
\end{tablenotes}
\end{table}
在某種意義上不起作用,即在標題後不添加“1”來引用表註釋 - 這是按預期編寫的。
答案1
它似乎工作正常,因為伯納德提到:
\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}
雖然顯然我不會真的把註 3 放在註 1 之前...