سلام
اگر به هر دلیلی نمیخواهید از بستهی tikz
استفاده کنید، بنده شکل شما رو در یکی از نرم افزارهای گرافیکی رسم کردم. لطفاً ایمیل خود را از طریق پیام خصوصی برای بنده ارسال کنید تا شکل رو براتون ارسال کنم.
ویرایش:
برای رسم این گراف:
۱- ابتدا اطمینان حاصل کنید که بستهی تیکز فراخوانی شده است:
\usepackage{tikz}
\usetikzlibrary{positioning}
۲- نمونهی کد:
\tikzset{main node/.style={circle,fill=blue!20,draw,minimum size=0.5cm,inner sep=0pt},
}
\begin{center}
\begin{tikzpicture}
\begin{scope}
\node[main node] (0) {$0$};
\node[main node] (1) [right = 2cm of 0] {$3$};
\node[main node] (2) [below = 2cm of 0] {$1$};
\node[main node] (3) [right = 2cm of 2] {$4$};
\node[main node] (4) [below = 4.5cm of 0] {$2$};
\node[main node] (5) [right = 2cm of 4] {$5$};
\path[draw,thick]
(0) edge node [above,xshift=-5mm,yshift=0mm] {$0$} (1)
(0) edge node [above,xshift=-5mm,yshift=5mm] {$6$} (3)
(0) edge node [above,xshift=-8mm,yshift=8mm]{$3$} (5)
(2) edge node [above,xshift=-7mm,yshift=-12mm]{$4$} (1)
(2) edge node [below,xshift=-7mm,yshift=0mm]{$1$} (3)
(2) edge node [above,xshift=-7mm,yshift=1mm]{$7$} (5)
(4) edge node [above,xshift=-9mm,yshift=-16mm]{$8$} (1)
(4) edge node [below,xshift=-7mm,yshift=-7mm]{$3$} (3)
(4) edge node [below,xshift=-7mm,yshift=0mm]{$2$} (5)
;
\end{scope}
\end{tikzpicture}
\end{center}
۳- خروجی:
پیروز باشید.