使用LaTex排版Table 有关的格式
Table表格
1、Table name、Table caption in lowercase or in uppercase and printed in the same line
有些会议和期刊提供的LaTex模板,其中的表格的caption显示都是大写的,如图:

要改成小写的话,可以添加几行,

下面是完整例子,

重新编译一下,输出效果

如果也想将 TABLE 改成仅首字母大写,可以添加一行,\def\tablename{Table}

效果如下,

如果想让表格描述和“Table Ⅰ”在同一行,可以添加几行,
\makeatletter
\patchcmd{\@makecaption}
{\\}
{.\ }
{}
{}

效果如图,

注意,\label 总要放在 \caption 的后面。
2、改变Table 的线粗
可以使用 booktabs宏包,
\usepackage{booktabs}
然后将 \hline (表示横线)替换为:
\toprule(细)\midrule(粗) \bottomrule(粗+)
3、论文写作中,三线表最常见,把握几个要点
- 竖线能不用则不用,
- 横线同理
- 表格尽量排在首次引用之后的页首 [t] 或 页尾 [b]
参考:https://tex.stackexchange.com/questions/166814/table-caption-in-uppercase-i-dont-know-why
其他链接:https://www.cnblogs.com/1024th/p/11623258.html
https://www.cnblogs.com/coolxxx/p/5982439.html
https://github.com/MLNLP-World/Paper-Writing-Tips
https://blog.csdn.net/NSJim/article/details/109045914

浙公网安备 33010602011771号