1

My first experiment with qtree puzzled me: why is the first tree output (it is copied from the manual) and the second not?

\documentclass[msmallroyalvopaper
    ]{memoir}

\usepackage{qtree}

\begin{document}

text - this works:

\Tree [.DP my pony ]

but this produces nothing:

\Tree [.Human Person Stuff] 

end
\end{document}
user855443
  • 1,120

1 Answers1

1

qtree syntax require empty space before closing brackets:

\documentclass[msmallroyalvopaper]{memoir}
\usepackage{qtree}

\begin{document}
text - this works:

\Tree [.DP my pony ] % here you have

but this produces nothing (if you not add space before `]`:

\Tree [.Human Person Stuff ] % here i added

end
\end{document}

enter image description here

Zarko
  • 296,517