目录
本文转自:
1 引入
Latex表格中通常会出现一些符号用于特殊含义表示,如最高分类精度等。本文则是对如何在表格中进行脚注进行示例。
2 效果
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}
关键语句:
\multicolumn{4}{l}{\small $\bullet$ denotes the best performance value for each data set.}\\
注意:\multicolumn一定要放在表格环境中,不要出表格环境,一旦在表格环境外, Latex就会报错!换句话说,\multicolumn要放在\end{tabular}之前。
代码解释:
这段代码是用于在表格中添加一个跨列的单元格,并在该单元格中添加一段文本。具体解释如下:
- \multicolumn{4}{l}:这是一个跨列的单元格,它共跨越了4列,采用了左对齐方式。
- {\small ∙∙ denotes the best performance value for each data set.}:这是在跨列单元格中添加的文本内容,其中∙∙表示最佳性能值的标识符,small命令用于设置文本的字体大小。
因此,这段代码的作用是在表格中添加一行文本,用于说明表格中的∙∙符号表示每个数据集的最佳性能值。