「LaTex」写论⽂,插⼊表格:双栏跨栏和单栏⼀.前⾔
在LaTex中插⼊表格,分为两类,双栏跨栏和单栏。
⼆.技术实现
1.单栏插⼊表格,代码如下:
\begin{table}
\label{tab:1}      % Give a unique label
\begin{tabular*}{\tblwidth}{@{} LLLL@{} }
\toprule
Col 1 & Col 2 & Col 3 & Col4\\
\midrule
12345 & 12345 & 123 & 12345 \\
12345 & 12345 & 123 & 12345 \\
12345 & 12345 & 123 & 12345 \\
12345 & 12345 & 123 & 12345 \\
12345 & 12345 & 123 & 12345 \\
\bottomrule
\end{tabular*}
\end{table}
一个单元格怎么分两栏效果如下:
2.双栏插⼊表格
只需要在题头题尾加⼊“ * ” 即可,代码如下:
\begin{table*}
\label{tab:1}      % Give a unique label
\begin{tabular*}{\tblwidth}{@{} LLLL@{} }
\toprule
Col 1 & Col 2 & Col 3 & Col4\\
\midrule
12345 & 12345 & 123 & 12345 \\
12345 & 12345 & 123 & 12345 \\
12345 & 12345 & 123 & 12345 \\
12345 & 12345 & 123 & 12345 \\
12345 & 12345 & 123 & 12345 \\
\bottomrule
\end{tabular*}
\end{table*}
*亲测有效

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。