v_3 に自己ループを描画し、v_4 と v_3 の間に平行エッジを描画する方法\usepackage{tkz-graph}
(tkz-graph がグラフの描画に最適でない場合は、グラフの描画に最適な方法をお知らせください)
また、エッジに 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}
答え1
\Loop .. \Edge 行はコンパイルされません...
何を達成したいのかはわかりませんが、これを行う方法は次のとおりです。
\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}
PS: v1 ループをもう少し変更してみましょう:
\Loop[dist=17mm, dir=SOWE,label={loop-1},style={red,dashed,left,<->},labelstyle=teal](v_1)