我是 LaTex 新手,我对这个表格有点问题...我必须做很多这种表格,我想找到一种方法来自动修复这个问题。有人能帮我吗?下面是我的代码和表格。
多谢!
\documentclass{article}
\usepackage{multirow}
\usepackage{xcolor}
\usepackage{colortbl}
\usepackage{rotating}
\begin{document}
\begin{table}[!ht]
\begin{center}
\caption{Matrice de confusion pour les classes texturales concernant notre campagne d’échantillonnage.}
\begin{tabular}{|
>{\columncolor[HTML]{C0C0C0}}c |
>{\columncolor[HTML]{EFEFEF}}c |c|c|c|c|}
\hline
\multicolumn{1}{|l|}{\cellcolor[HTML]{C0C0C0}} & \multicolumn{5}{c|}{\cellcolor[HTML]{C0C0C0}\textbf{\begin{tabular}[c]{@{}c@{}}Texture\\ observée sur le terrain\end{tabular}}} \\ \hline
\cellcolor[HTML]{C0C0C0} & & \cellcolor[HTML]{EFEFEF}A & \cellcolor[HTML]{EFEFEF}L & \cellcolor[HTML]{EFEFEF}Z & \cellcolor[HTML]{EFEFEF}\textbf{Total} \\ \cline{2-6}
\cellcolor[HTML]{C0C0C0} & A & 3 & 2 & 0 & 5 \\ \cline{2-6}
\cellcolor[HTML]{C0C0C0} & L & 4 & 7 & 0 & 11 \\ \cline{2-6}
\cellcolor[HTML]{C0C0C0} & Z & 0 & 1 & 3 & 4 \\ \cline{2-6}
\multirow{-5}{*}{\cellcolor[HTML]{C0C0C0}\textbf{\rotatebox{90}{Référence CNSW}}} & \textbf{Total} & 7 & 10 & 3 & \textbf{20} \\ \hline
\end{tabular}
\end{center}
\end{table}
\end{document}
答案1
我总是尽量避免表格颜色过多。保持干净整洁,这样更易读!
话虽如此,但这里有一个可能的解决方案。不过请注意,您必须手动微调位置\parbox
。
\documentclass{article}
\usepackage{multirow}
\usepackage{makecell}
\usepackage{booktabs}
\usepackage{rotating}
\renewcommand\theadalign{bc}
\renewcommand\theadfont{\bfseries}
\begin{document}
\begin{table}[!ht]
\caption{Matrice de confusion pour les classes texturales concernant notre campagne d’échantillonnage.}
\begin{center}
\begin{tabular}{*{6}{c}}
\toprule
& \multicolumn{5}{c}{\thead{Texture\\ observée sur le terrain}}\\
\midrule
\multirow{5}{*}{\rotatebox{90}{\parbox[c]{2.2cm}{\centering\textbf{Référence CNSW}}}}
&
& A
& L
& Z
& \textbf{Total}\\
& A
& 3
& 2
& 0
& 5\\
& L
& 4
& 7
& 0
& 11\\
& Z
& 0
& 1
& 3
& 4\\\addlinespace
& \textbf{Total}
& 7
& 10
& 3
& \textbf{20} \\
\bottomrule
\end{tabular}
\end{center}
\end{table}
\end{document}
答案2
有了nicematrix
,您将在所有 PDF 查看器中的所有缩放级别中获得完美的输出(灰色面板中不会出现细白线,并且规则在某些缩放级别似乎不会消失)。
\documentclass{article}
\usepackage[svgnames]{xcolor}
\usepackage{caption}
\usepackage{nicematrix}
\NiceMatrixOptions{cell-space-top-limit=2pt}
\begin{document}
\begin{table}[!ht]
\centering
\captionsetup{width=9cm, format=hang}
\setlength{\extrarowheight}{2pt}
\caption{Matrice de confusion pour les classes texturales concernant notre campagne d’échantillonnage.}
\begin{NiceTabular}{cccccc}[hvlines,corners=NW]
\CodeBefore
\rectanglecolor{LightGrey!50}{2-2}{2-6}
\Body
& \Block[fill=LightGrey]{1-5}<\bfseries>{Texture\\ observée sur le terrain} \\
\Block[fill=LightGrey]{5-1}<\bfseries\rotate>{Référence\\CNSW} &
\Block[fill=LightGrey!50]{5-1}{}
& A & L & Z & \textbf{Total} \\
& A & 3 & 2 & 0 & 5 \\
& L & 4 & 7 & 0 & 11 \\
& Z & 0 & 1 & 3 & 4 \\
& \textbf{Total} & 7 & 10 & 3 & \textbf{20} \\
\end{NiceTabular}
\end{table}
\end{document}
nicematrix
因为使用 PGF/Tikz 节点,所以您需要多次编译。
答案3
这是一个解决方案,有各种改进和代码简化。对于您的具体问题,主要工具是makecell
,它允许在标准单元格中换行,但它不能很好地处理表格中的颜色,因为后台有表格。\Centerstack
来自的命令stackengine
没有这个问题。此外,您不必加载xcolor
和colortbl
:table
xcolor 选项会为您完成此操作,并且它为表格添加了更多颜色命令。最后,\cline
在彩色表格中留下一些细白线,所以我用 s 替换它们,\hhline
其中部分线条具有背景颜色,以使它们不可见。
\documentclass{article}
\usepackage{multirow}
\usepackage[table, svgnames]{xcolor}
\colorlet{grey2}{LightGrey!25}
\usepackage{rotating}
\usepackage{caption, makecell, hhline}
\newcommand{\myhhline}{\hhline{|>{\arrayrulecolor{LightGrey}}- > {\arrayrulecolor{black}}|>{\arrayrulecolor{grey2}}->{\arrayrulecolor{black}}|----|}}
\usepackage[usestackEOL]{stackengine}
\begin{document}
\begin{table}[!ht]
\centering
\captionsetup{width=9cm, format=hang}
\setlength{\extrarowheight}{2pt}
\caption{Matrice de confusion pour les classes texturales concernant notre campagne d’échantillonnage.}
\begin{tabular}{|
>{\columncolor{LightGrey}}c |
>{\columncolor{grey2}}c|c|c|c|c|}
\hline
\rowcolor{LightGrey} & \multicolumn{5}{c|}{\bfseries\Centerstack{Texture\\ observée sur le terrain}} \\ \hline
\rowcolor{grey2}\cellcolor{LightGrey} & & A & L & Z & \textbf{Total} \\[-0.2pt]
\myhhline
& A & 3 & 2 & 0 & 5 \\[-0.1pt]
\myhhline%
& L & 4 & 7 & 0 & 11 \\[-0.1pt]
\myhhline
& Z & 0 & 1 & 3 & 4 \\[-0.1pt]
\myhhline
\multirow{-5}{*}{\textbf{\rotatebox{90}{\Centerstack{Référence\\ CNSW}}}} & \textbf{Total} & 7 & 10 & 3 & \textbf{20} \\ \hline
\end{tabular}
\end{table}
\end{document}