Cómo dibujar un bucle propio en v_3 y un borde paralelo entre v_4 y v_3 con \usepackage{tkz-graph}
(si tkz-graph no es la mejor manera de trazar gráficos, mencione la mejor manera de trazar gráficos)
Además, ¿cómo nombrar los bordes como e_1, e_2, ..., e_6?
\documentclass[border=10pt]{standalone}
\usepackage{tkz-graph}
\usetikzlibrary{calc}
\GraphInit[vstyle=normal]
\begin{document}
\begin{tikzpicture}
\SetGraphUnit{2}
\begin{scope}[rotate=-135]
\Vertices{circle}{$v_1$,$v_2$,$v_3$,$v_4$}
\end{scope}
\Edges($v_1$,$v_2$,$v_4$,$v_3$,$v_1$)
\Loop[dist=2cm,dir=EA,style={thick}]($v_3$)
\Edge[style={bend left}]($v_1$)($v_2$)
\end{tikzpicture}
\end{document}
Respuesta1
Las líneas \Loop... \Edge no se compilan...
Aquí tienes una manera de hacerlo, aunque no estoy seguro de qué quieres lograr:
\documentclass[border=10pt]{standalone}
\usepackage{tkz-graph}
\usetikzlibrary{calc}
\GraphInit[vstyle=normal]
\begin{document}
\begin{tikzpicture}
% ~~~ internal fonts in circles, see 4.3 \SetVertexMath ~~~
% so the vertex' name is v_1, AND it's text is $v_1$
% we only need the names here
\SetVertexMath
% ~~~ putting the vertices, see 2.1 \Vertex ~~~~
\Vertex[x=0,y=0]{v_1}
\Vertex[x=3,y=0]{v_2}
\Vertex[x=0,y=3]{v_4}
\Vertex[x=3,y=3]{v_3}
% ~~~ multiple edge-connections, see 5.3 Multiple arêtes \Edges ~~~~~~~
\Edges(v_4,v_1,v_2,v_4,v_3,v_1)
\Edge[label=hi world](v_3)(v_2)
% ~~~ some loops, see5.2.1 Exemple avec \Loop ~~~~
\Loop(v_4) % using defaults
\Loop[dist=1cm, dir=EA](v_3) % narrow, EAst=right side
\Loop[dist=17mm, dir=SOWE,label=loop-1,style=left](v_1)
\end{tikzpicture}
\end{document}
PD: modifiquemos un poco más el bucle v1:
\Loop[dist=17mm, dir=SOWE,label={loop-1},style={red,dashed,left,<->},labelstyle=teal](v_1)