多行著色

多行著色

我將 TexStudio 與 Bibtex 一起使用。我想為多行表著色。雖然,我之前在這個論壇上看到過一些關於此問題的問題,但我仍然無法解決這個問題。

小樣本表的程式碼如下:

 \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}

請指導我如何為包含“Methods”一詞的單元格著色

答案1

這個怎麼樣? (參見這個答案.)

\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}

在此輸入影像描述

答案2

{NiceTabular}這是使用of建立該表的方法nicematrix。你需要幾個編譯。

\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}

上述程式碼的輸出

您將在所有 PDF 檢視器中獲得完美的輸出。

相關內容