In graph theory, multiple arcs exist. However, the graph below gives a fused arc instead of the multiple arcs. Please, how do I separate the arcs of the tex file below? See the diagram below for clue
\begin{figure}[H]
\centering
\begin{tikzpicture}[>=stealth',shorten >=1pt,auto,node distance=4.5cm,
thick,main node/.style={circle,draw,font=\sffamily\Large\bfseries}]
\node[main node] (a) {$v_1$};
\node[main node] (b) [below of=a]{$v_2$};
\path
(a) [->] edge node [pos=.5,above] [left]{14} (b)
(b) [->]edge node [pos=.5,below][right] {30} (a);
\end{tikzpicture}
\end{figure}



[]in the options to theedgenodes? I mean, it works, but it only adds clutter to the code. Also,left/rightoverwritesbelow/above, andpos=0.5is actually the default, so you might as well do\path [->] (a) edge node [left] {14} (b) (b) edge node [right] {30} (a);. (With the addition of the anchors, as in CarLaTeX's answer.) – Torbjørn T. Nov 16 '17 at 09:11;)Upvote – Cragfelt Nov 17 '17 at 06:30