使用 colortbl 和 tabular 进行宏扩展

使用 colortbl 和 tabular 进行宏扩展

我想在表格环境中交替行颜色。我发现 colortbl 很有用。为了简化编写,我构建了以下宏来交替行颜色(请参阅下面的 MWE)。但是,我不明白为什么宏\crc不能与 共存\multicolumn,而\rca或 却能\rcb很好地工作。

而且,更重要的是,我如何简化写作,比如我总是使用相同的宏名来交替颜色,即使在使用时\multicolumn

\documentclass {article}

    \usepackage {colortbl}

\begin {document}

% define row colors A and B
\def\rca{\rowcolor [rgb] {0.90, 0.95, 1.0}}
\def\rcb{\rowcolor [rgb] {0.80, 0.90, 1.0}}

% This one works like a charm
\begin {tabular} {|l|l|} \hline
    \rca \multicolumn {1} {|c|} {one} & 1 \\ \hline
    \rcb two & 2 \\ \hline
    \rca three & 3 \\ \hline
\end {tabular}

% use current row color and set color for next row
\def\cseta{\gdef\crc{\rca\csetb}}
\def\csetb{\gdef\crc{\rcb\cseta}}
\cseta          % (re)set \crc to the row color A

% This one does not want to compile!
% ! Misplaced \omit.
% \multispan ->\omit
%                   \@multispan
% l.23     \crc \multicolumn {1} {|c} {one}
%                                          & 1 \\ \hline
\begin {tabular} {|l|l|} \hline
    \crc \multicolumn {1} {|c} {one} & 1 \\ \hline
    \crc two & 2 \\ \hline
    \crc three & 3 \\ \hline
\end {tabular}

\end {document}

答案1

\multicolumn(和 \rowcolor)希望成为单元格中的第一个内容。之前的一些内容是可以的,但它必须可扩展,并且只能扩展到空格。

您在 \multicolumn 之前使用了 \gdef,但它不可扩展,因此不起作用。

\documentclass{article}

\usepackage{colortbl}

\newcommand\CAred{\rowcolor{red}}
\DeclareRobustCommand\CBred{\rowcolor{red}}
\newcommand\CCred[1][]{\rowcolor{red}} 
\newcommand\CD{ } 
\newcommand\CE{\,} 
\begin{document}

\begin{tabular}{l}
\rowcolor{red}\multicolumn{1}{r}{blub}\\ %work
\CAred\multicolumn{1}{r}{blub}        \\ %work
%\CBred\multicolumn{1}{r}{blub}       \\ %fails (robust command)
%\CCred\multicolumn{1}{r}{blub}       \\ %fails (optional argument -> not expandable
\CD\multicolumn{1}{r}{blub}           \\ %works
%\CE\multicolumn{1}{r}{blub}          \\ %fails (content)
%\relax\multicolumn{1}{r}{blub}       \\ %fails
%\def\xy{blub}\multicolumn{1}{r}{blub}\\ %fails (definition)
%\parindent=10pt \multicolumn{1}{r}{blub}\\ %fails (assignment)
%blub\multicolumn{1}{r}{blub}         \\ %fails (content)
\end{tabular}

\end{document}

答案2

感谢 Ulrike Fischer 提出的建议\noalign,这里有一个可行的解决方案:

\documentclass {article}

    \usepackage {colortbl}

\begin {document}

% define row colors A and B
\def\rca{\rowcolor [rgb] {0.90, 0.95, 1.0}}
\def\rcb{\rowcolor [rgb] {0.80, 0.90, 1.0}}

\begin {tabular} {|l|l|} \hline
    \rca \multicolumn {1} {|c|} {one} & 1 \\ \hline
    \rcb two & 2 \\ \hline
    \rca three & 3 \\ \hline
\end {tabular}

% use current row color and set color for next row
\def\cseta{\noalign {\gdef\crc{\rca\csetb}}}
\def\csetb{\noalign {\gdef\crc{\rcb\cseta}}}
\gdef\crc{\rca\csetb}               % (re)set \crc to the row color A

\begin {tabular} {|l|l|} \hline
    \crc \multicolumn {1} {|c} {one} & 1 \\ \hline
    \crc two & 2 \\ \hline
    \crc three & 3 \\ \hline
\end {tabular}

\end {document}

相关内容