Latex如何跨两栏画表格

很简单,只需要多加一个星号

\begin{table*} .... \end{table*} \begin{table*} .... \end{table*}

%绘制三线表
\begin{table*}[!htbp] 
\centering
\caption{Comparison of exsiting work and our work}
\begin{tabular}{ccccccc}   %{ccccc}几个c代表有几列
\toprule  %添加表格头部粗线
ref& next-HP&mul-HP&temp& non-temp&profile&content\\
\midrule  %添加表格中横线
Steve Jobs& 001& Male & 0\\
Bill Gates& 002& Female & 0\\
\bottomrule %添加表格底部粗线
\end{tabular}
\end{table*}
\begin{table*}[!htbp] \centering\caption{Comparison of exsiting work and our work}\begin{tabular}{ccccccc}   %{ccccc}几个c代表有几列\toprule  %添加表格头部粗线ref& next-HP&mul-HP&temp& non-temp&profile&content\\\midrule  %添加表格中横线Steve Jobs& 001& Male & 0\\Bill Gates& 002& Female & 0\\\bottomrule %添加表格底部粗线\end{tabular}\end{table*}

你可能感兴趣的:(Latex如何跨两栏画表格)