如何将节点或矩形放在节点内?

如何将节点或矩形放在节点内?

我创建了一个chain节点。在每个节点中,我想放置其他带有文本的矩形。这就是我希望每个链接节点的样子(请原谅我的触摸板绘图):

在此处输入图片描述

我尝试通过嵌套节点来获得这个结果,但是节点内容似乎是文本模式,所以不起作用。

答案1

您可以查看 Dave 提供的链接,但这里还有另一种解决方案:

\documentclass[11pt]{scrartcl}
\usepackage{tikz}

\begin{document}
\begin{tikzpicture}
\node[fill=blue!30,text depth = 3cm,minimum width=3cm,font=\Large] (main){TEXT};
\node[draw,fill=yellow!30] at (main.center){$2+3$};
\node[draw,fill=orange!30] at ([yshift=2em]main.south){$5$};
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容