无法使用 tikz 绘制此网络图

无法使用 tikz 绘制此网络图

我刚开始使用 tikz 进行 Latex 绘图。我正在尝试绘制这样的图表 在此处输入图片描述

我尝试过的 MWE 远没有达到预期的输出。

\documentclass{article}
\usepackage{tikz}
\title{Diagram}
\begin{document}
\maketitle
\begin{tikzpicture}
  \draw circle(.5)--(-4,5);
\end{tikzpicture}
\end{document} 

请帮忙。

答案1

您的问题类似于。我已获取用户的代码@sergej我还做了一些改变:

\documentclass[tikz,border=10pt]{standalone}
\usetikzlibrary{arrows,automata}

\begin{document}
\begin{tikzpicture}[node distance=2.3cm,->,>=stealth',auto,
  every edge/.append style={thick}]
  \node[state] (1) {$A$};
  \node[state] (2) [right of=1] {$R$};  
  \path (1) edge[loop left]  node{$S_1$} (1)
            edge[bend left]  node{$\scriptstyle S_2$}   (2)
        (2) edge[loop right] node{$S_4$}  (2)
            edge[bend left] node{$\scriptstyle S_3$}     (1);
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容