我想为以句号结尾的句子绘制一个组成树,但这会在 qtree 中出错。这是没有句号的示例。现在我想在末尾添加一个句号,它与根节点 S 相连。
\begin{figure}
\Tree [.S [.NP LaTeX ] [.VP [.V is ] [.NP fun ] ] ]
\end{figure}
可以使用 qtree 来完成此操作吗?
答案1
您可以使用
\Tree [.S [.NP LaTeX ] [.VP [.V is ] [.NP fun ] ] {.} ]
和qtree
或tikz-qtree
或者可能更好
\documentclass[border=5mm]{standalone}
\usepackage{tikz-qtree}
\begin{document}
\tikzset{frontier/.style={distance from root=90pt},level distance=30pt}
\Tree [.S [.NP LaTeX ] [.VP [.V is ] [.NP fun ] ] [.\node[shape=coordinate,yshift=1ex]{}; {.} ] ]
\end{document}