I have a document that I wish to distribute both in color and monochrome. It contains tables and makes use of colored rows. Problem is, when I use the monochrome option for the xcolor package the colored rows show up as completely black and thus cannot be read.
What I would like is for the text to be readable even when the monochrome option is active.
Here is a minimal example :
\documentclass{article}
\usepackage[monochrome]{xcolor}
\usepackage{colortbl}
\begin{document}
\begin{tabular}{cc}
This & that\\
\rowcolor{yellow} This & that
\end{tabular}
\end{document}
(If I remove the monochrome option all is well).
monochrome? If I use\textcolor{yellow}{text}thetextappears black, too. – Qrrbrbirlbel Feb 25 at 0:39\usepackage[gray,table]{xcolor}– Qrrbrbirlbel Feb 25 at 0:50