Estou usando o TexStudio com Bibtex. Quero colorir uma tabela com várias linhas. Embora eu tenha visto algumas perguntas colocadas anteriormente neste fórum sobre isso, ainda não consigo resolver o problema.
O código para uma pequena tabela de amostra é fornecido da seguinte forma:
\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, me oriente como colorir a célula que contém a palavra "Métodos"
Responder1
Que tal agora? (cf.esta resposta.)
\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}
Responder2
Aqui está uma maneira de construir essa tabela com {NiceTabular}
of nicematrix
. Você precisa de várias compilações.
\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}
Você terá um resultado perfeito, em todos os visualizadores de PDF.