有没有办法在 TikZ 图中按基线对齐节点?
\documentclass[tikz]{standalone}
\usetikzlibrary{graphdrawing}
\usegdlibrary{trees}
\begin{document}
\begin{tikzpicture}[tree layout]
\node {aligned?}
child {%
node {yes}
}
child {%
node {no}
};
\end{tikzpicture}
\end{document}
在上面的例子中,yes
节点更高,因为y
,并且节点似乎垂直居中,因此no
节点的基线最终低于yes
节点的基线。 有办法解决这个问题吗?