节点旁边的注释

节点旁边的注释

我正尝试在每个节点旁边添加一些注释以进行森林管理LaTeX,但我不知道该怎么做。

有人知道我们如何在森林节点旁边的矩形中添加这种颜色组合吗?

第一张图片是这棵树的样子 第二个是添加注释之后的样子。

\documentclass[12pt,twoside]{article}
\usepackage{forest} 

\begin{document}

\begin{figure}[t]
\centering
\footnotesize
\begin{forest}
for tree={
    grow=south,
    top color = white,
    bottom color = white,
    circle,
    draw,
    minimum size=12ex,
    inner sep=7pt,
    s sep=15mm,
}
[{\{a,b,c,d\}}
    [{\{a,b,c,d\}}
        [{\{a,d,c\}}
            [{\{d,c\}}
                [{\{c\}}
                    [{\{g,c\}}
                        [{\{g\}}]
                    ]
                ]
            ]
        ]
    ]
    [{\{a,b,c,d\}}
        [{\{a,b,c,d\}}
            [{\{b,d,c\}}
                [{\{b,c\}}
                    [{\{b\}}
                        [{\{b,e\}}
                            [{\{e\}}]
                        ]
                    ]
                ]
            ]
        ]
    ]
    [{\{a,b,c,d\}}
        [{\{a,b,c\}}
            [{\{ac\}}
                [{\{a\}}
                    [{\{a,f\}}
                        [{\{f\}}]
                    ]
                ]
            ]
        ]
    ]
]
\end{forest}
\end{figure}

\end{document}

相关内容