Comment passer certaines cellules en reverse vidéo ?

Le package 'color' disponible sur ftp://ftp.inria.fr/pub/TeX/CTAN/macros/latex/required/graphics/ permet entre autres de le faire. En fait, il permet de définir des couleurs de texte et de fond de page. Exemples : \tabcolsep=30pt \begin{tabular}{|c|c|c|} \hline 1&&\\ &\colorbox{black}{\strut{\color{white}Coucou}}&\\ &&2\\ \hline \end{tabular} ou (\LaTeXe) \newlength\Coucoulength \settowidth\Coucoulength{Coucou Coucou Coucou} \begin{tabular}{|c|c|c|} \hline 1&Coucou Coucou Coucou &\\ &\colorbox{black}{\makebox[\Coucoulength][c]{\color{white}Coucou}} &\\ &&2\\ \hline \end{tabular} %%%% fin exemple %%%%