LaTeX表格注释

2023-10-25
#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. 是注释的内容。