答案1
为每个节点指定一个名称,然后tikz
对它们使用常用命令。我按照以下方式操作:
\documentclass{article}
\usepackage{forest}
\begin{document}
\begin{forest}
for tree = {edge={->}}
[$a$, name=root
[$3a+1$, name=left] {\path (root)-- node [rotate=65, yshift=3pt] {\tiny left} (left) ;}
[$\frac{a}{2}$, name=right] {\path (root)-- node [rotate=-65, yshift=3pt] {\tiny right} (right) ;}
]
\end{forest}
\end{document}
答案2
另一种解决方案是使用istgame
包裹:
\documentclass{standalone}
\usepackage{istgame}
\begin{document}
\begin{istgame}[->,sloped]
\xtdistance{20mm}{20mm}
\istroot(0)[null node]{$a$}
\istb{\mbox{odd}}[a]{3a+1}
\istb{\mbox{even}}[a]{\frac a2}
\endist
\end{istgame}
\end{document}