如何用 TikZ 编写没有(可见)根的树?

如何用 TikZ 编写没有(可见)根的树?

我正在尝试在 TikZ 中编写树结构。所讨论的树仅在叶子上贴有标签;内部节点上没有标签。由于我没有node在内部节点上使用标签,因此树结构会连接起来。但是,似乎我仍然需要编写一个\node来启动树。虽然我可以将其标签留空,但它仍然显示为白色圆圈,从而断开了结构。我该如何避免这种情况?

\documentclass{article}
\usepackage{tikz}

\begin{document}

% The broken structure bothers me
\begin{tikzpicture}
\node {}
    child { node {a} }
    child {
      child {node {b}}
      child {node {c}}
    }
;
\end{tikzpicture}

% This is what I want, but without the added root.
\begin{tikzpicture}
\node {} % this node should not exist
  child {
    child { node {a} }
    child {
      child {node {b}}
      child {node {c}}
    }
  }
;
\end{tikzpicture}

\end{document}

答案1

我认为这就是你想要的:

\begin{tikzpicture}
\coordinate
  child { node {a} }
  child {
    child {node {b}}
    child {node {c}}
  }
;
\end{tikzpicture}

在此处输入图片描述

相关内容