赞
踩
原创不易,路过的各位大佬请点个赞
环境:
egin{tabular} end{tabular}
对齐格式:l 左 c 居中 r 对齐
线条:| 竖线 hline横线 || 双竖线 hline hline 双横线
设置宽度:p{宽度值},内容超过宽度时,自动换行
%调节图片位置,h:浮动;t:顶部;b:底部;p:当前位置
egin{table}[htbp]%调节图片位置,h:浮动;t:顶部;b:底部;p:当前位置 centering caption{Relative running time of the considered filters} label{tab:1} egin{tabular}{cccc ccc}%表格中的数据居中,c的个数为表格的列数 hlinehline oalign{smallskip} Algorithms & A & B & C& D& E &F \ oalign{smallskip}hline oalign{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 \ oalign{smallskip}hline end{tabular} end{table}
egin{table}% 创建表格 caption{The description of Split Bregman Iteration (SBI) Algorithm}%写标题 label{tab:1} % Give a unique label给表格命名方便以后调用 % For LaTeX tables use egin{tabular}{ll} %设置表格为两列并且是左对齐(l:left;c:center;r:right) hline oalign{smallskip} %画表格的一行,并且行距设置为smallskip(可以不设行距,或者设为bigskip) multicolumn{2}{l}{ extbf{emph{Split Bregman Iteration (SBI) Algorithm}}} \ %在第一行将列给合并成一列multicolumn{n},n代表合并几列,并且加粗,斜体 oalign{smallskip}hline oalign{smallskip} Step$:$1 & Set$:t=0$,choose$:mu>0,:b_{0=0},:u_{0}=0,:v_{0}=0$.\ %区分两列需要通过&符号 oalign{smallskip} Step$:$2 & Repeat \ oalign{smallskip} Step$:$3 &$u^{(t+1)}=$argmin$_{u}f(u)+rac{mu}{2}|u-Gv^{(t)}-b^{(t)}|^{2}_{2}$\ oalign{smallskip} Step$:$4 &$v^{(t+1)}=$argmin$_{v}g(u)+rac{mu}{2}|u^{t+1}-Gv-b^{(t)}|^{2}_{2}$\ oalign{smallskip} Step$:$5 &$b^{t+1}=b^{(t)}-(u^{(t+1)}-Gv^{(t+1)})$\ oalign{smallskip} Step$:$6 &$tleftarrow+1$\ oalign{smallskip} Step$:$7 &Until stopping criterion is satisfied\ oalign{smallskip}hline end{tabular} end{table}
egin{table*}[htbp]%调节图片位置,h:浮动;t:顶部;b:底部;p:当前位置 centering caption{Relative running time of the considered filters} label{tab:1} egin{tabular}{cccc ccc} hlinehline oalign{smallskip} Algorithms & A & B & C& D& E &F \ oalign{smallskip}hline oalign{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 \ oalign{smallskip}hline end{tabular} end{table*}
%导言区 documentclass[UTF8]{ctexart} %正文区 egin{document} section{表格一} egin{table}[htbp] centering caption{Table 1} label{tab:1} % l 左 c 居中 r 对齐 % | 竖线 hline横线 || 双竖线 hline hline 双横线 egin{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{表格二} egin{table}[htbp] centering caption{Table 2} label{tab:2} % p{设置宽度},内容超过宽度时,自动换行 egin{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}
原创不易,路过的各位大佬请点个赞
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。