答案1
您可以使用从库中label
创建的节点。rectangle split
shapes.multipart
\documentclass[tikz,border=3mm]{standalone}
\usetikzlibrary{shapes.multipart}
\begin{document}
\begin{tikzpicture}
\node[circle,draw,minimum size=2em,
label={[draw,rectangle split,%<-selects shape
rectangle split parts=2,%<- 2 node parts
rectangle split horizontal,%<- horizontal split
yshift=-1ex]below:{10\nodepart{two}10}}]{1};
\end{tikzpicture}
\end{document}
如果您想要创建其中的几个,将这些键组合成某种样式是有意义的。