我正在尝试将一个文本节点锚定到另一个命名文本节点的右侧。左上角应该是“Mary read”(“Mary”周围有一个方框)。但“read”一词似乎位于 (0,0) 的右侧。
\documentclass[tikz]{standalone}
\usepackage[linguistics]{forest}
\begin{document}
\begin{tikzpicture}
\node(Mary)[draw] at (-3,2) {\Large Mary};
\node[text] at[anchor=west] (Mary) {\Large read};
\node[draw] at (3,-2) {\Large The book};
\end{tikzpicture}
\end{document}