答案1
使用该forest
包的另一种解决方案:
\documentclass[margin=3mm]{standalone}
\usepackage[edges]{forest}
\begin{document}
\begin{forest}
for tree = {
% nodes
inner ysep = 2pt,
align = center,
grow = south,
% tree
anchor = north,
forked edge,
l sep = 8mm,
s sep = 4mm,
fork sep = 4mm,
}% end for tree
[Physical Quantities
[Scalar Quantities\\
Some text here
[\dots]
]
[Vector Quantities\\
Some text here
[\dots]
]
]
\end{forest}
\end{document}
答案2
我认为最简单的解决办法是forest
-包裹:
\documentclass{article}
\usepackage{forest}
\useforestlibrary{edges}
\begin{document}
\begin{forest}
forked edges,
[Physical Quantities
[Scalar Quantities\\
Some text here,%
align=center, base=bottom]
[Vector Quantities\\
Some text here,%
align=center, base=bottom]]
\end{forest}
\end{document}
输出如下:
我希望这有帮助。