結合セルの表の線の幅と色を指定する方法

結合セルの表の線の幅と色を指定する方法

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

関連情報