colortblパッケージを使用して、表の列に色をつけたところ、\multirowを使用した部分がうまく表示されません。
(下記コードの「え」の部分)
解決法をご教示ください。
\documentclass[a4j]{jreport}
  \usepackage{multicol}
  \usepackage{multirow}
  \usepackage{colortbl}
  \begin{document}
  \begin{tabular}{|>{\columncolor[rgb]{.6,.6,.6}}c|c|}
   \hline
   あ&い\\
   \hline
   \multicolumn{2}{|c|}{う}\\
   \hline
   \multirow{2}{*}{え}&\multirow{2}{*}{お}\\
   &\\
   \hline
  \end{tabular}
  \end{document}