I have made this table: with this code:
Code: Select all
\documentclass[11pt,a4paper]{book}
\usepackage[table]{xcolor}
\begin{document}
\begin{table}
\centering\arrayrulecolor{black}
\begin{tabular}{l|ccccc|}
\cline{2-6}
\rowcolor{red}\multicolumn{1}{c|}{\cellcolor{white}A} & B & C & D & E & F \\ \hline
\multicolumn{1}{|l|}{G} & H & I & J & K & L \\ \hline
\multicolumn{1}{|l|}{M} & N & O & P & Q & R \\ \hline
\multicolumn{1}{|l|}{S} & T & U & V & W & X \\ \hline
\end{tabular}
\end{table}
\end{document}
How can I make it visible?
Thank you.