Tikz-qtree를 사용하여 이진 트리를 생성하려고 하는데 삼각형의 상단이 가장자리에 연결되도록 리프 노드를 이동하는 방법을 찾으려고 합니다. 노드 자체에서 yshift를 사용해 보았지만 가장자리는 여전히 같은 위치에 연결되어 있습니다.
다음 코드:
\documentclass{article}
\usepackage{tikz}
\usepackage{tikz-qtree}
\usetikzlibrary{positioning,babel,shadows,trees,backgrounds,fit,arrows,shapes.geometric}
\begin{document}
\tikzset{every tree node/.style={minimum size=10mm,inner sep=0pt,draw,circle, line width=1mm,font=\Large},
edge from parent/.style=
{draw, edge from parent path={(\tikzparentnode) -- (\tikzchildnode)}},
level distance=2cm, sibling distance=.5cm}
\begin{tikzpicture}
\Tree [.~ \node[inner sep=10pt, regular polygon, regular polygon sides=3]{~}; \node[inner sep=10pt, regular polygon, regular polygon sides=3](b1){~}; ]
\end{tikzpicture}
\end{document}