The graph we drew below using tikz is easy.
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\tikzstyle{every node} = [inner sep=2pt,circle,draw]
\node (0) at (-8, 4) {};
\node (1) at (-2, 4) {};
\draw (0) to (1);
\draw [in=105, out=15, looseness=1.50] (0) to (1);
\draw [bend left, looseness=1.25] (1) to (0);
\end{tikzpicture}
\end{document}
I'd like to draw this graph in Mathematica, but it seems that I can only control one edge. (The other two multiple edges seem to be out of control)
g = Graph[{1 <-> 2, 1 <-> 2, 1 <-> 2}, VertexLabels -> All,
EdgeShapeFunction -> {1 <-> 2 -> {"CurvedEdge", "Curvature" -> -3}}]
PS: The top edge of the graph drawn by tikz is a Bessel curve. Can Mathematica specify the type of such a curve. I looked in the help documentation of EdgeShapeFunctionand didn't see the type of curve selected.
I know that Mathematica is not a drawing software. But sometimes I need to add some special shaped edges to the resulting graph, like the link below.



