Latex 无法构建以下代码,并出现错误“紧急停止”。
\documentclass{article}
\usepackage{tikz-qtree}
\begin{document}
\begin{tikzpicture}
\Tree
[.a
[.b
[.c
[.d
[.e
[.f]
]
]
]
]
]
\end{tikzpicture}
\end{document}
删除“.f”子项后,编译正常。我是否达到了 qtree 的某些限制?
答案1
与qtree
(和tikz-qtree
),树标签由空格分隔(第5页,qtree
文档)。因此,在您的示例中,使用[.f ]
而不是[.f]
:
\documentclass{article}
\usepackage{tikz-qtree}
\begin{document}
\begin{tikzpicture}
\Tree
[.a
[.b
[.c
[.d
[.e
[.f ]
]
]
]
]
]
\end{tikzpicture}
\end{document}