我试图让表格的背景颜色由 和 组成multirows
。multicolums
没有任何颜色,表格工作正常。但我想要的颜色扩展到可变数量的行。我尝试用相同的颜色为四行着色,一个单元格延伸到四行,一个单元格延伸到两行。
如您所见,第二行rowcolor
删除了“等级”的上半部分cell 1
,第三行颜色删除了“等级”的下半部分和厚度的下半部分。有什么解决方案吗?
我的文本:
\begin{table}[ht]
\begin{tabular}{|c|c|lll|}
\hline
\rowcolor{blue!20}
\multirow{4}{*}{Grades}&Yield&\multicolumn{3}{c|}{Impact bending test}\\
\rowcolor{blue!20}
&Strength&\multirow{2}{*}{Thickness}&Test& Impact\\
\rowcolor{blue!20}
&$\mathbf{R_e[N/mm^2]}$& &{\bf temperature} & {\bf work}\\
\rowcolor{blue!20}
&\bf{transv.min.} &\bf{ transv.} &$\mathbf{[\grader]}$ & {\bf [J]} \\\hline
\multirow{ 1}{*}{{\bf DH36}} & & {\bf 5.5 – 7.0} & {\bf -40} & {\bf 24} \\
\hline
\end{tabular}
\end{table}
答案1
根据对您的序言和所用命令的含义的猜测:
\documentclass{article}
\usepackage{siunitx}
\usepackage{makecell,multirow}
\usepackage[table]{xcolor}
\begin{document}
\begin{table}[htb]
\sisetup{detect-weight=true}
\renewcommand\arraystretch{1.3}
\begin{tabular}{|*{2}{>{\bfseries}c|}
*{3}{>{\bfseries}c}|}
\hline
\rowcolor{blue!20}
& & \multicolumn{3}{c|}{\textbf{Impact bending test}} \\
\rowcolor{blue!20}
\multirow{-2}*{Grades}
& \multirow{-3}*[-1ex]{\makecell{Yield\\ Strength\\
{$\mathbf{R_e[\si{N\per\milli\meter^2}]}$} \\transv. min.}}
& \makecell{Thickness\\ transv.}
& \makecell{Test\\ temperature\\ \si{\celsius}}
& \makecell{Impact\\ work\\ \si{J} } \\
\hline
DH36 & & 5.5 – 7.0 & -40 & 24 \\
\hline
\end{tabular}
\end{table}
\end{document}
编辑:
宏有用于底部位置、顶部位置、左对齐单元格内容和右对齐的makecell
选项。如果不使用选项,单元格内容将垂直和水平居中。b
t
l
r
如果在上面的 MWE 中将表格的第二行替换为
\multirow{-3}*{Grades}
& \multirow{-3}*[3pt]{\makecell{Yield\\ Strength\\
{$\mathbf{R_e[\si{N\per\milli\meter^2}]}$} \\transv. min.}}
& \makecell[b]{Thickness\\ transv.}
& \makecell[b]{Test\\ temperature\\ \si{\celsius}}
& \makecell[b]{Impact\\ work\\ \si{J} } \\
如下表:
答案2
{NiceTabular}
以下是使用制作表格的方法nicematrix
。无论使用哪种 PDF 查看器,您都不会看到细白线。
\documentclass{article}
\usepackage{siunitx}
\usepackage{xcolor}
\usepackage{nicematrix}
\begin{document}
\begin{table}[htb]
\sisetup{detect-weight=true}
\renewcommand\arraystretch{1.3}
\begin{NiceTabular}{|c|c|ccc|}[cell-space-top-limit=3pt]
\Hline
\RowStyle[nb-rows=2,rowcolor=blue!20]{\bfseries}
\Block{2-1}{Grades}
& \Block{2-1}{Yield\\ Strength\\ $\mathbf{R_e[\unit{N\per\milli\meter^2}]}$ \\transv. min.}
& \Block{1-3}{Impact bending test} \\
&
& \Block{}{Thickness\\ transv.}
& \Block{}{Test\\ temperature\\ \unit{\celsius}}
& \Block{}{Impact\\ work\\ \unit{J}} \\
\Hline
DH36 & & $5.5$ -- $7.0$ & $-40$ & $24$ \\
\Hline
\end{NiceTabular}
\end{table}
\end{document}
您需要多次编译(因为nicematrix
在后台使用 PGF/Tikz 节点)。