我怎样才能绘制这种层次结构图?

我怎样才能绘制这种层次结构图?

如果这个问题(或暗示这个问题答案的问题)已经被问过,我提前道歉。关于如何在 Latex 中绘制以下形状的图表,有什么建议吗?

在此处输入图片描述

非常感谢 !

答案1

实现这一目标的可能性是无穷无尽的。我希望本文能给你提供一些借鉴。

\documentclass[tikz,border=3.14mm]{standalone}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}[bullet/.style={circle,fill,inner sep=2pt}]
 \foreach \X in {1,2,3}
 {\node[bullet,label=above:$\Sigma_\X^0$] (S\X) at (3*\X,1){};
 \node[bullet,label=below:$\Pi_\X^0$] (P\X) at (3*\X,-1){};
 }
 \node[bullet,left=1.5cm of S1,label=above:$\{2^\omega\}$] (w){};
 \node[bullet,left=1.5cm of P1,label=below:$\{\emptyset\}$] (e){};
 \path (w) --(P1) node[midway,bullet,label=above:$\Delta^0_1$]{};
 \foreach \X [count=\Y] in {2,3}
 {\path (S\X) -- (P\Y) node[midway,font=\Large\bfseries,
  label=above:{$\omega_1\ifnum\X=3
  ^{\omega_1}
  \fi$ alternations}]{\dots};}
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容