tikz-qtree 中的换行符

tikz-qtree 中的换行符

我正在尝试强制在我的树的叶子内换行(使用 tikz-qtree),并且我找到了两个关于此问题的问题,但提供的答案对我都不起作用。这是我的示例:

\documentclass{article}

\usepackage{tikz}
\usepackage{tikz-qtree}

\tikzset{baseline,every tree node/.style={align=center,anchor=north}}

\begin{document}

\begin{tikzpicture}
\Tree [.S [.NP {the\\man} ] [.VP [.V {went} ] [.AdvP {away} ] ] ]
\end{tikzpicture}

\end{document}

\tikzset无论我将命令放在 tikzpicture 环境中还是放在前言中,或者是否在命令中包含“baseline”,似乎都无关紧要\tikzset。我不断收到的错误消息是:

软件包 pgfkeys 错误:我不知道密钥“/tikz/align”,我将忽略它。也许你拼错了。

相关内容