Latex中的表格总结

时间:2022-09-10 06:39:30

导言

好久没用Latex了,所以一用的时候就出问题了,在不赶deadline的时候先总结好,用的时候直接ctrl+c,要是你也需要,欢迎参考,不针对没有Latex基础的小伙伴,所以不打算写的很细致。

这篇是持续更新的


1.带小数点的表格怎么做

\documentclass{article}

\begin{document}

\begin{tabular}{|c|r@{.}l|}
\hline
income & 12345&60 \\ \hline
spending & 765&40 \\ \hline
left & 89&09 \\ \hline
\end{tabular}•

\end{document}

效果

Latex中的表格总结


1.1多行都是小数的表格

\begin{array}{|c|*{3}{r@{.}l|}}
\hline
income & 1345&67 & 500&34 & 7654&43 \\ \hline
spending & 1020&55 & 1929&2 & 9870&89 \\ \hline
left & 11580&33 & 234&56 & 3767&09 \\ \hline
\end{array}

Latex中的表格总结



2.增广矩阵的编排

$\left(
\begin{array}{@{}ccc|c@{}}
a11 & a12 & a13 & b1 \\
a21 & a22 & a23 & b2 \\
a31 & a32 & a33 & b3
\end{array}
\right)$

Latex中的表格总结


3.表格的合并分割

\multicolumn{项数(占用的列数)}{格式}{内容}

\begin{tabular}{|c|c|c|}
\hline
& \multicolumn{2}{c|}{SVM} \\ \cline{2-3}
class & TP & FP \\ \hline
class1 & * & * \\ \hline
class2 & * & * \\ \hline
\end{tabular}•

Latex中的表格总结

这里要解释一下,这个说明SVM这个占用了两列,所以就是\multicolumn{2}如果某个选项占用了3列,则在后面写个{3},注意后面的那个由于是两个列合并的,所以其实是cc-》C所以为了保证右边有线,你要这么写{C|}.之后的\cline和\hline是一个的效果。如果你使用\hline那么它会把class这边也穿过去的。所以我们需要划线的地方是第2-3列\cline它这里就是指明了范围。第2-3列,注意,这里永远考虑的对象是针对我们的变换的那个列(这里SVM)