TikZ에서 모든 형제자매의 거리를 개별적으로 설정합니다.

TikZ에서 모든 형제자매의 거리를 개별적으로 설정합니다.

LaTeX에는 다음 코드가 있습니다.

\begin{figure}
    \centering
    \begin{tikzpicture}[nodes={draw, circle}, -, 
        level/.style = {level distance = 1.5cm, sibling distance = 1cm},
        level 1/.style={sibling distance=3cm}]
        \node [minimum size=0.75cm]{$\rightarrow$\strut}
        child { node[rectangle, minimum size=0.75cm] {a\strut} }
        child { node [minimum size=0.75cm] {$\land$} 
            child { node [rectangle, minimum size=0.75cm] {b\strut}}
            child { node [rectangle, minimum size=0.75cm] {c\strut}}
            child { node [rectangle, minimum size=0.75cm] {d\strut}}
            child { node [rectangle, minimum size=0.75cm] {e\strut}}
        }
        child { node[rectangle, minimum size=0.75cm] {g\strut} }
        child { node [minimum size=0.75cm] {$\times$} 
            child { node [rectangle, minimum size=0.75cm] {h\strut}}
            child { node [rectangle, minimum size=0.75cm] {\tau \strut}}
        }
        child { node [minimum size=0.75cm] {$\land$} 
            child { node [rectangle, minimum size=0.75cm] {i\strut}}
            child { node [rectangle, minimum size=0.75cm] {j\strut}}
            child { node [rectangle, minimum size=0.75cm] {k\strut}}
            child { node [rectangle, minimum size=0.75cm] {l\strut}}
            child { node [minimum size=0.75cm] {$\times$} 
                child { node [rectangle, minimum size=0.75cm] {m\strut}}
                child { node [rectangle, minimum size=0.75cm] {\tau \strut}}
            }
        }
        child { node[rectangle, minimum size=0.75cm] {n\strut} };
    \end{tikzpicture}
\end{figure}

다음과 같은 출력이 생성됩니다.

여기에 이미지 설명을 입력하세요

사이의 거리를 어떻게 설정하나요?g,논리적이고,곱셈 기호그리고맞고그래서타우그리고노드가 겹치지 않나요?

답변1

forest기본적으로 노드가 겹치는 것을 방지하는 패키지 사용을 고려할 수 있습니다 .

여기에 이미지 설명을 입력하세요

\documentclass{article}
\usepackage{forest}

\begin{document}

\begin{forest}
for tree={draw, minimum size=.75cm, l sep=7mm, if n children=0{text depth=0, text height=1.5ex}{circle}},
s sep=1cm
[$\rightarrow$, minimum size=1cm
    [a]
    [$\land$
        [b][c][d][e]
    ]
    [g]
    [$\times$
        [h][$\tau$]
    ]
    [$\land$
        [i][j][k][l][$\times$[m][$\tau$]]
    ]
    [n]
]
\end{forest}

\end{document}

관련 정보