答案1
正如@Alan Munn 在其评论中所建议的那样,您可以使用forest
包简单地绘制树。例如,第一棵树的代码可以是:
\documentclass[border=3.141592]{standalone}
\usepackage{forest}
\usetikzlibrary{arrows.meta}
\begin{document}
\begin{forest}
for tree={
edge = {Stealth-},
grow = south
}
[ \^{I}
[2\^{I},
[21\^{I}]
[22\^{I}]
]
[3\^{I},
[31\^{I}]
[32\^{I}]
]
]
\end{forest}
\end{document}
forest
您可以在包文档中找到有关您的信息。