latex插入表格:三线表格、普通表格

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}

latex插入表格:三线表格、普通表格_第1张图片

二、插入三线表,双栏


\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*}

latex插入表格:三线表格、普通表格_第2张图片

三、插入其它表格

%导言区
\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}

latex插入表格:三线表格、普通表格_第3张图片

原创不易,路过的各位大佬请点个赞

你可能感兴趣的:(Latex/Ctex编辑,latex设置,latex,latex插入表格)