如何指定合併儲存格的表格線寬和顏色

如何指定合併儲存格的表格線寬和顏色

我如何在 \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}

相關內容