Latex定宽单栏长表格(双栏环境)

一个单栏表格:

在table后边加*就可以跨栏啦。

\begin{table*}[t]
    \centering
    \begin{tabular}{ccccccc}
        \hline
        Test Groups & a & b & c & d & e & f \\
        \hline\hline
        Result1 & 0.00 & 0.00 & 0.00 & 0.00 & 0.00 & 0.00 \\
        Result2 & 0.00 & 0.00 & 0.00 & 0.00 & 0.00 & 0.00 \\
        \hline
    \end{tabular}
    \caption{Test}
\end{table*}

效果:

一个不会跳到下一页的单栏表格:

\usepackage{stfloats}

% ....................

\begin{table*}[t]
    \centering
    \begin{tabular}{ccccccc}
        \hline
        Test Groups & a & b & c & d & e & f \\
        \hline\hline
        Result1 & 0.00 & 0.00 & 0.00 & 0.00 & 0.00 & 0.00 \\
        Result2 & 0.00 & 0.00 & 0.00 & 0.00 & 0.00 & 0.00 \\
        \hline
    \end{tabular}
    \caption{Test}
\end{table*}

效果:

Latex定宽单栏长表格(双栏环境)_第1张图片

一个定宽且不会跳到下一页的单栏表格

\usepackage{stfloats}

% ....................

\begin{table*}[b]
    \centering
    \setlength{\tabcolsep}{7mm}{
    \begin{tabular}{ccccccc}
        \hline
        Test Groups & a & b & c & d & e & f \\
        \hline\hline
        Result1 & 0.00 & 0.00 & 0.00 & 0.00 & 0.00 & 0.00 \\
        Result2 & 0.00 & 0.00 & 0.00 & 0.00 & 0.00 & 0.00 \\
        \hline
    \end{tabular}}
    \caption{Test}
\end{table*}

效果:

Latex定宽单栏长表格(双栏环境)_第2张图片

 

你可能感兴趣的:(Latex)