我在 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}