I would like to move the labels of the edges a little more to the left/right/below because they are clipping part of the edges.
I’ve used \tikzstyle{LabelStyle}=[right/left/above/below] however the spacing provided is not enough.
Here is a minimal working example showing the problem
Code: Select all
\documentclass[]{article}
\usepackage{tkz-berge}
\usepackage[position=top]{subfig}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}[scale=1,transform shape]
\Vertex[x=0,y=0,Math=true]{v_{2}}
\Vertex[position={right of=v_{2},xshift=3cm},Math=true]{v_{3}}
\Vertex[position={above of=v_{2},yshift=2cm,xshift=2cm},Math=true]{v_{1}}
\Vertex[position={right of=v_{1},xshift=3cm},Math=true]{v_{4}}
\tikzstyle{EdgeStyle}=[right] \tikzstyle{LabelStyle}=[below]
\Edge[label=$e_{3}$](v_{2})(v_{3})\tikzstyle{LabelStyle}=[left]
\Edge[label=$e_{1}$](v_{2})(v_{1})
\Edge[label=$e_{4}$](v_{3})(v_{4}) \tikzstyle{LabelStyle}=[right]
\Edge[label=$e_{2}$](v_{1})(v_{3})
\end{tikzpicture}
\end{figure}
\end{document}
Thanks in advance.