色を1行ごとに交互につけるには、\xcolor パッケージを使った上で、\rowcolors コマンドを使って色を指定する。
例
\usepackage[table]{xcolor} \begin{document} \begin{table} {\rowcolors{2}{blue!80!yellow!50}{blue!90!yellow!20} \begin{tabular}{ |c|c|c|c| } \hline 1 & 2 & 3 \\ \hline A & B & C\\ \hline 1 & 2 & 3 \\ \hline A & B & C\\ \hline 1 & 2 & 3 \\ \hline A & B & C\\ \hline \end{tabular} } \end{table} \end{document}
結果
参考
下の例では2行目以降の色が交互になる。\rowcolors{1} とすれば、1行目から色が交互になる。