latex插入三线表和普通表格
原创不易,路过的各位大佬请点个赞
环境:
\begin{tabular} \end{tabular}
对齐格式:l 左 c 居中 r 对齐
线条:| 竖线 \hline横线 || 双竖线 \hline \hline 双横线
设置宽度:p{宽度值},内容超过宽度时,自动换行
%调节图片位置,h:浮动;t:顶部;b:底部;p:当前位置
一、插入三线表,单栏
\begin{table}[htbp]%调节图片位置,h:浮动;t:顶部;b:底部;p:当前位置
\centering
\caption{Relative running time of the considered filters}
\label{tab:1}
\begin{tabular}{cccc ccc}%表格中的数据居中,c的个数为表格的列数
\hline\hline\noalign{\smallskip}
Algorithms & A & B & C& D& E &F \\
\noalign{\smallskip}\hline\noalign{\smallskip}
Time (2D) & 1 & 0.81 &2.44 &2.22 &2.07 &0.65 \\
Time (3D) & 1 & 0.81 & 2.93&2.52 &2.46 &1.75 \\
\noalign{\smallskip}\hline
\end{tabular}
\end{table}
\begin{table}% 创建表格
\caption{The description of Split Bregman Iteration (SBI) Algorithm}%写标题
\label{tab:1} % Give a unique label给表格命名方便以后调用
% For LaTeX tables use
\begin{tabular}{ll} %设置表格为两列并且是左对齐(l:left;c:center;r:right)
\hline\noalign{\smallskip} %画表格的一行,并且行距设置为smallskip(可以不设行距,或者设为bigskip)
\multicolumn{2}{l}{\textbf{\emph{Split Bregman Iteration (SBI) Algorithm}}} \\ %在第一行将列给合并成一列\multicolumn{n},n代表合并几列,并且加粗,斜体
\noalign{\smallskip}\hline\noalign{\smallskip}
Step$\:$1 & Set$\:t=0$,choose$\:\mu>0,\:b_{0=0},\:u_{0}=0,\:v_{0}=0$.\\ %区分两列需要通过&符号
\noalign{\smallskip}
Step$\:$2 & Repeat \\
\noalign{\smallskip}
Step$\:$3 &$u^{(t+1)}=$argmin$_{u}f(u)+\frac{\mu}{2}\|u-Gv^{(t)}-b^{(t)}\|^{2}_{2}$\\
\noalign{\smallskip}
Step$\:$4 &$v^{(t+1)}=$argmin$_{v}g(u)+\frac{\mu}{2}\|u^{t+1}-Gv-b^{(t)}\|^{2}_{2}$\\
\noalign{\smallskip}
Step$\:$5 &$b^{t+1}=b^{(t)}-(u^{(t+1)}-Gv^{(t+1)})$\\
\noalign{\smallskip}
Step$\:$6 &$t\leftarrow+1$\\
\noalign{\smallskip}
Step$\:$7 &Until stopping criterion is satisfied\\
\noalign{\smallskip}\hline
\end{tabular}
\end{table}
二、插入三线表,双栏
\begin{table*}[htbp]%调节图片位置,h:浮动;t:顶部;b:底部;p:当前位置
\centering
\caption{Relative running time of the considered filters}
\label{tab:1}
\begin{tabular}{cccc ccc}
\hline\hline\noalign{\smallskip}
Algorithms & A & B & C& D& E &F \\
\noalign{\smallskip}\hline\noalign{\smallskip}
Time (2D) & 1 & 0.81 &2.44 &2.22 &2.07 &0.65 \\
Time (3D) & 1 & 0.81 & 2.93&2.52 &2.46 &1.75 \\
\noalign{\smallskip}\hline
\end{tabular}
\end{table*}
三、插入其它表格
%导言区
\documentclass[UTF8]{ctexart}
%正文区
\begin{document}
\section{表格一}
\begin{table}[htbp]
\centering
\caption{Table 1}
\label{tab:1}
% l 左 c 居中 r 对齐
% | 竖线 \hline横线 || 双竖线 \hline \hline 双横线
\begin{tabular}{| l | c | c | c || r |}
\hline
名字 & 语文 & 数学 & 英语 & 备注\\
\hline
张三 & 87 & 100 & 93 & 优秀 \\
\hline
李四 & 75 & 64 & 52 & 补考另行通知\\
\hline
\hline
王五 & 80 & 82 & 78 & 良好\\
\hline
\end{tabular}
\end{table}
\section{表格二}
\begin{table}[htbp]
\centering
\caption{Table 2}
\label{tab:2}
% p{设置宽度},内容超过宽度时,自动换行
\begin{tabular}{| l | c | c | c || p{1.5cm} |}
\hline
名字 & 语文 & 数学 & 英语 & 备注\\
\hline
张三 & 87 & 100 & 93 & 优秀 \\
\hline
李四 & 75 & 64 & 52 & 补考另行通知\\
\hline
\hline
王五 & 80 & 82 & 78 & 良好\\
\hline
\end{tabular}
\end{table}
\end{document}
原创不易,路过的各位大佬请点个赞