LaTeX表格注释
\usepackage{threeparttable}
\begin{table}[!htbp]
\centering
\caption{...}
\begin{threeparttable}
\begin{tabular}{l l l}
\hline
A & B & C \\
\hline
a & b & c \tnote{*} \\
\hline
\end{tabular} \label{tab_name}
\begin{tablenotes}
\footnotesize
\item[*] This is the note.
\end{tablenotes}
\end{threeparttable}
\end{table}
说明:
- 文档最前面的包
\usepackage{threeparttable}
需要引用。 \begin{threeparttable}
和\end{threeparttable}
是需要的。\tnote{*}
是上标的星号。\begin{tablenotes} \footnotesize \item[*] This is the note. \end{tablenotes}
中的This is the note.
是注释的内容。