无法制作倾斜树。此外,如何在某些节点周围绘制曲线状框,如下图所示

无法制作倾斜树。此外,如何在某些节点周围绘制曲线状框,如下图所示

我曾尝试使用给出的解决方案如何使用 tikz-qtree 绘制倾斜(不平衡)的树?回答但我收到了错误。

未定义的控制序列。\edge[draw=none];

我的代码是

\Tree[.{Collection(I) \\ $1.2$ V} 
                    \edge[draw=none];  
                    [.Queue(I) 
                        [.PriorityQueue 
                        ]
                        [.{BlockingQueue}
                            [.PriorityBlockingQueue 
                            ]
                            [.LinkedBlockingQueue 
                            ] 
                        ]
                    ] 
            ]

我正在尝试实现这个图表

收藏

我还想在一些节点周围画上曲线,并在曲线旁边写上文字,并用 \cdots 之类的点来表示树中的更多节点。帮帮忙。

答案1

欢迎!也许云形也可以?我也推荐forest,这个答案使用了一些技巧这里

\documentclass{article}
\usepackage[edges]{forest}
\usetikzlibrary{shapes.symbols}
\begin{document}
\noindent\begin{forest}
forked edges,
for tree={}
[{Queue (I)},alias=root
 [PriorityQueue,alias=L
 ]
 [BlockingQueue,for tree={folder, grow'=0}
  [PriorityBlockingQueue ]
  [LinkedBlockingQueue,alias=B]
 ]
 [\dots,alias=R]
]
\draw (root) -- ++ (120:2.4) 
    node[above,label={[anchor=north east,font=\small,magenta]south east:$1.2$ V}] {Collection(I)};
\node[cloud,draw,fit=(L)(R)(B)(root),inner sep=0pt,aspect=2,cloud puffs=42,
label={[anchor=south west,font=\small,magenta]north east:$1.5$ V}]{};
\end{forest}
\end{document}

在此处输入图片描述

顺便说一句,如果1.2 V是伏特,也许你想使用siunitx

相关内容