병합된 셀의 표 선 너비와 색상을 지정하는 방법

병합된 셀의 표 선 너비와 색상을 지정하는 방법

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

관련 정보