赞
踩
当我们使用Latex写论文的时候,三线表是展示实验结果的常用方法,但网上的方法杂七杂八,找到自己想要的表格需要花费一番功夫。本篇文章旨在记录论文常用表格的画法,方便论文的书写。
导入的包:
\usepackage{booktabs,multirow}
效果如下图:
代码如下:
\begin{table}[h]
% 设置居中
\centering
% 表的标题
\caption{table one}
% 定义表格样式 |l|c|c|c|r|
\begin{tabular}{|l|c|c|c|r|}
% 加横线
\hline
a & b & c & d & e\\
\hline
li & zuo & lei & yu & xin\\
\hline
\end{tabular}
\end{table}
代码说明:
效果如下图:
代码为:
\begin{table}[!htbp]
\caption{it is a test!} %表格的标题
\label{tab:da16}
\centering
\begin{tabular}{rcccc} %可以设置表格每列的对齐方式,c表示居中,r表示右对齐,l表示左对齐
\toprule %加条线
Method & $\mathcal{J}\&\mathcal{F}$ & $\mathcal{J}$ & $\mathcal{F}$ & FPS \\
\midrule %加条线
FEELVOS & 81.7 & 81.1 & 82.2 & - \\
\midrule %加条线
Ours & \textbf{91.9} & \textbf{90.8} & \textbf{93.0} & 24.4 \\
\bottomrule %加条线
\end{tabular}
\end{table}
代码说明:
通常是表格内部的数据展示形式发生了变化,比如一个大点下面两个小点这种。
效果如下:
代码为:
\begin{table}[!htbp] \caption{It is a test!} %标题 \centering \label{tab:yv19} \begin{tabular}{rccccc} \toprule \multirow{2}*{Method} & \multicolumn{1}{c}{} & \multicolumn{2}{c}{Seen} & \multicolumn{2}{c}{Unseen} \\ \cmidrule(lr){3-4}\cmidrule(lr){5-6} & Overall & $\mathcal{J}$ & $\mathcal{F}$ & $\mathcal{J}$ & $\mathcal{F}$ \\ \midrule SST & 81.8 & 80.9 & - & 76.6 & - \\ \midrule Ours & \textbf{83.1} & \textbf{81.8} & \textbf{86.2} & \textbf{78.0} & \textbf{86.2} \\ \bottomrule \end{tabular} \end{table}
代码说明:
目前我遇到的三线表画法就是这些了,学会这些一般的表格有不成问题。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。