如何用 tikz 节点填充表格框并将文本居中?
在这种情况下,我不想使用 colortbl 包。
\documentclass[a4paper]{article}
\usepackage{array,tabularx,tikz,ragged2e,siunitx}
\begin{document}
{\renewcommand\tabularxcolumn[1]{m{#1}}
\renewcommand{\arraystretch}{1.3}
\begin{tabularx}{\linewidth}{%
|X|*{3}{>{\Centering}m{2cm}|}}\hline
Entourer la ou les bonne(s) reponse(s)
&\tikz[baseline,overlay]
\node[fill=blue!15,minimum height=20pt,minimum width=2cm+2\tabcolsep] (A) {a};
&b&p\\\hline
\end{tabularx}}
\end{document}
答案1
我不确定我是否理解你的问题,但如果您希望将 a 与 b 和 c 垂直对齐,请考虑
\documentclass[a4paper]{article}
\usepackage{array,tabularx,tikz,ragged2e,siunitx}
\begin{document}
{\renewcommand\tabularxcolumn[1]{m{#1}}
\renewcommand{\arraystretch}{1.3}
\begin{tabularx}{\linewidth}{%
|X|*{3}{>{\Centering}m{2cm}|}}\hline
Entourer la ou les bonne(s) reponse(s)
&\tikz[baseline=(A.base),overlay]
\node[fill=blue!15,minimum height=20pt,minimum width=2cm+2\tabcolsep] (A) {a};
&b&p\\\hline
\end{tabularx}}
\end{document}
更新:好的,我看到@Zarko 已经给了你想要的东西。为了好玩,我稍微遵循了你原来的方法,这就是我得到的:
\documentclass[a4paper]{article}
\usepackage{array,tabularx,tikz,ragged2e,siunitx}
\usetikzlibrary{calc}
\newcommand{\TikzStrut}[1]{\tikz[overlay,remember picture]{\node(#1){\strut};}}
\makeatletter
\newcommand{\RowHeight}{% see e.g. https://tex.stackexchange.com/a/84536/121799
\def\tmp{\dimexpr\arraystretch\ht\strutbox+\arraystretch\ht\strutbox+\arraystretch\dp\@arstrutbox}\relax
\xdef\myrowheight{\the\tmp}\relax
}
\makeatother
\begin{document}
{\renewcommand\tabularxcolumn[1]{m{#1}}
\renewcommand{\arraystretch}{1.3}
\begin{tabularx}{\linewidth}{%
|X|*{3}{>{\Centering}m{2cm}|}}\hline
Entourer la ou les bonne(s) reponse(s)\RowHeight
&\tikz[baseline=(A.base),overlay,remember picture]{
\node[fill=blue!15,minimum height=\myrowheight,minimum width=2cm+2\tabcolsep] (A)
{a};}
&b&p\\\hline
\end{tabularx}}
\end{document}
它确实正确地计算了行高(我认为),但只有在我利用了一行中有两行的事实之后才正确。而且垂直对齐也不完美。我只是想发布它,以便以后需要时可以完成它。
答案2
我怀疑你正在寻找这个:
为此你不需要魔法tikz
:
\documentclass[a4paper]{article}
\usepackage{array,tabularx}%reorganized loading of package
\renewcommand\tabularxcolumn[1]{m{#1}} % added
\usepackage{ragged2e}
%\usepackage{tikz} % is not used in mwe
%\usepackage{siunitx} % is not used in mwe
%
\usepackage[table]{xcolor}% new package, for coloring table
\begin{document}
\renewcommand{\arraystretch}{1.3}
\begin{tabularx}{\linewidth}{|X|*{3}{>{\Centering}m{2cm}|}}
\hline
Entourer la ou les bonne(s) reponse(s)
& \cellcolor{blue!15}{a} & b & p \\
\hline
\end{tabularx}
\end{document}
附录(已编辑): 来自以下评论中的讨论*以及你的后续评论 问题* 我得出结论,你实际上喜欢解决方案类似于我在回答中的第一个示例,正如我在那个(后续)问题中提供的那样:
*这使得您可以进一步改变节点形状,正如您在下面的评论中提到的那样,并在您的后续问题中进一步阐述:
\documentclass[12pt]{article}
\usepackage{tabularx}
\renewcommand\tabularxcolumn[1]{m{#1}}
\usepackage{ragged2e}
\usepackage{tikz}
\newcommand{\DC}[1]{%
\begin{tikzpicture}[baseline=(current bounding box.base)]
\node[minimum width=\dimexpr2cm+2\tabcolsep,
minimum height=12mm, text depth=0.25ex,
inner ysep=2mm, outer sep=0pt,
append after command={
\pgfextra{\let\LN\tikzlastnode
\path[fill=blue!15]
(\LN.south west) -| (\LN.north east) -| cycle;
} },
font=\bfseries] {#1};
\end{tikzpicture}}
\begin{document}
\begingroup
\renewcommand{\arraystretch}{1.3}
\begin{tabularx}{\linewidth}{%
|>{\raggedright}X | *{3}{@{}>{\Centering}m{\dimexpr2cm+2\tabcolsep}@{}|}
}
\hline
Entourer la ou les bonne(s) reponse(s)
& \DC{a} & b & c \\
\hline
\end{tabularx}
\endgroup
\end{document}