欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

教你一个小技巧给latex表格添加脚注 (非footnote)

程序员文章站 2022-03-08 18:45:51
...

1 引入

  Latex表格中通常会出现一些符号用于特殊含义表示,如最高分类精度等。本文则是对如何在表格中进行脚注进行示例。

2 效果

教你一个小技巧给latex表格添加脚注 (非footnote)

3 Latex代码示例

\documentclass{article}

\usepackage{booktabs}
\usepackage{multirow}
\usepackage{rotating}
\usepackage{tabularx}

\begin{document}

\begin{table*}[!htb]
\caption{Test}
\label{table: performance comparison}
\centering
\resizebox{\textwidth}{!}{
\begin{tabular}{crrrrrrrrr}
\toprule
Data set     & A                         & B                         & C                         & D                         & E                         & F                         & G\\
\midrule
Musk1        & $0.671\pm0.046$           & $0.156\pm0.008$           & $0.596\pm0.010$           & $0.247\pm0.032$           & $0.718\pm0.026$           & $0.602\pm0.046$           & $\bullet0.140\pm0.013$\\
Musk2        & $0.548\pm0.008$           & $0.174\pm0.011$           & $0.502\pm0.029$           & $0.338\pm0.015$           & $0.544\pm0.032$           & $0.544\pm0.026$           & $\bullet0.150\pm0.014$\\
\bottomrule
\multicolumn{4}{l}{\small $\bullet$ denotes the best performance value for each data set.}\\
\end{tabular}}
\end{table*}
\end{document}