如何指定合并单元格的表格线宽和颜色

如何指定合并单元格的表格线宽和颜色

如何在 \noalign{\color{greenTable}\hrule height 1.5pt} 之后使用 \multicolumn?

我一直收到错误这是我的完整代码:

   \begin{tabular}{
        l
        |
        c
        |
        c
    }
    one & two & three \\
    \noalign{
        \color{green}
        \hrule height 1.5pt
    }%
    \multicolumn{2}{l|}{}& 3\\
    4   & 5   & 6     \\
\end{tabular}

答案1

[请始终提供完整文件,如下所示]

您需要保留\noalign组内的颜色还原:

\documentclass{article}

\usepackage{color}
\begin{document}
 \begin{tabular}{
        l
        |
        c
        |
        c
    }
    one & two & three \\
    \noalign{{
        \color{green}
        \hrule height 1.5pt
    }}%
    \multicolumn{2}{l|}{}& 3\\
    4   & 5   & 6     \\
 \end{tabular}
\end{document}

相关内容