LATEX学习记录
Posted iiiLISA
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LATEX学习记录相关的知识,希望对你有一定的参考价值。
1、首先上绝杀,这个制作表格真的是太方便啦!
当然也不是万能的。
https://www.tablesgenerator.com/#
2、Latex 表格内的公式实现换行的方法
首先在导言区添加:
\\newcommand\\tabincell[2]\\begintabular@#1@#2\\endtabular %放在导言区
如下:
然后在tabular内的格子内使用 \\tabincellc 插入相应内容, 就可以在表格中自动换行
如下:
\\begintable
\\newcommand\\tabincell[2]\\begintabular@#1@#2\\endtabular %导言区
\\centering
\\begintabular|c|c|c|
\\hline
1 & \\tabincellcthe first line \\\\ the next\\\\the next\\\\ last & \\tabincellcone \\\\ one\\\\ %换行,单元格内的每个元素用\\tabincellc放表格内容
\\hline
2 & \\tabincellchello\\\\ aha\\\\ ok \\\\yes \\\\en & \\tabincellctwo \\\\ two \\\\ two \\\\
\\hline
\\endtabular
3、表格里的字体大小更改
Latex 设置字体大小命令由小到大依次为:
\\tiny
\\scriptsize
\\footnotesize
\\small
\\normalsize
\\large
\\Large
\\LARGE
\\huge
\\Huge
添加位置:
\\begintable[h]\\footnotesize%此处为表格字体设置
\\begintabular
\\endtabular
\\endtable
4、(对于我这个小白来说)
\\begintable
\\endtable
表格只跨一栏
\\begintable*
\\endtable*
可以使表格跨两栏
以上是关于LATEX学习记录的主要内容,如果未能解决你的问题,请参考以下文章