答案1
来自根节点的边从根节点的南坐标开始。如果我理解正确的话,您希望它们从\bowtie
符号中心开始,即它们应该向左移动。实现此目的的一种方法是使用包\mathrlap
中定义的:mathtools
\documentclass[border=3.141592]{standalone}
\usepackage{mathtools}
\usepackage{forest}
\begin{document}
\begin{forest}
for tree = {inner ysep=1pt,
math content,
}
[\bowtie_{\mathrlap{p_\mathit{AB}^{}}}
[A]
[B]
]
\end{forest}
\end{document}
这就是你所追求的吗?
编辑:
考虑到@egreg 的评论,居中效果\bowtie
更好:
\documentclass[border=3.141592]{standalone}
\usepackage{mathtools}
\usepackage{forest}
\begin{document}
\begin{forest}
for tree = {inner ysep=1pt,
math content,
}
[\bowtie_{\mathrlap{p_\mathit{AB}^{}}\kern-\scriptspace}
[A]
[B]
]
\end{forest}
\end{document}