圆和线图 tex

圆和线图 tex

我看见图表在此处输入图片描述

我想知道我们如何在 Latex 中输入这些内容。我已经看到 TikZ 包产生了类似的结果(?)

答案1

这是一个简单的解决方案pst-tree(可以在 TeX Live 和 MacTeX 下pdflatex使用开关--enable-write18 under MiKTeX,-shell-escape` 进行编译):

\documentclass[border=3pt]{standalone}
\usepackage[utf8]{inputenc}
\usepackage{pst-tree}
\usepackage{auto-pst-pdf}

\begin{document}

\everypsbox{\scriptstyle}
\psset{shortput=tab, labelsep=0pt}
\MakeShortTnput{\tnput}
$ \begin{psmatrix}
        \pstree[treemode=R, arrows=->, arrowinset=0]{%
            \Tcircle{\mathsf{S₁}}\tnput[labelsep=24pt]{\mathsf{t = 0}}}%
        {%
            \Tcircle{\mathsf{S₃}}^{\mathsf{p}}
            \Tcircle{\mathsf{S₂}}\tnput[labelsep=5pt, tnpos=b]{\mathsf{t = dt}}_{\mathsf{1-p}}}%
    \end{psmatrix} $

\end{document} 

在此处输入图片描述

相关内容