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