Estoy usando TexStudio con Bibtex. Quiero colorear una tabla de varias filas. Aunque he visto algunas preguntas planteadas anteriormente en este foro al respecto, todavía no puedo resolver el problema.
El código para una pequeña tabla de muestra se proporciona de la siguiente manera:
\begin{table}[]
\begin{tabular}{|c|c|c|c|}
\hline
\multirow{2}{*}{Methods} & \multicolumn{3}{c|}{Example 1} \\ \cline{2-4}
& ISE & IAE & ITAE \\ \hline
Abc & 0.1 & 0.2 & 0.3 \\ \hline
Xyz & 0.4 & 0.5 & 0.6 \\ \hline
\end{tabular}
\end{table}
Por favor, guíeme sobre cómo colorear la celda que contiene la palabra "Métodos".
Respuesta1
¿Qué tal esto? (cf.esta respuesta.)
\documentclass{article}
\usepackage{colortbl,multirow,xcolor}
\begin{document}
\begin{table}[]
\begin{tabular}{|c|c|c|c|}
\hline
\cellcolor{red!50} & \multicolumn{3}{c|}{ Example 1} \\ \cline{2-4}
\multirow{-2}{*}{\cellcolor{red!50} Methods} & ISE & IAE & ITAE \\ \hline
Abc & 0.1 & 0.2 & 0.3 \\ \hline
Xyz & 0.4 & 0.5 & 0.6 \\ \hline
\end{tabular}
\end{table}
\end{document}
Respuesta2
Aquí hay una manera de construir esa tabla con {NiceTabular}
of nicematrix
. Necesitas varias compilaciones.
\documentclass{article}
\usepackage{nicematrix}
\begin{document}
\begin{table}
\begin{NiceTabular}{cccc}[hvlines,color-inside]
\Block[fill=red!50]{2-1}{Methodes} & \Block{1-3}{ Example 1} \\
& ISE & IAE & ITAE \\
Abc & 0.1 & 0.2 & 0.3 \\
Xyz & 0.4 & 0.5 & 0.6
\end{NiceTabular}
\end{table}
\end{document}
Obtendrás un resultado perfecto en todos los visores de PDF.