Graphe probabiliste

Bonsoir,
J'ai réalisé un graphe probabiliste mais les fléches se chevauchent. Pouvez-vous m'aider s'il vous plait?
D'avance merci.
\begin{tikzpicture}[decoration={markings,mark=at position 0.52 with {\arrow[line width=2pt]{stealth}}},scale=0.6]
\node[draw,circle] (B) {$B$} ;
\node[draw,circle] (C) [right=2cm of B] {$C$} ;
\node[draw,circle] (C) [right=2cm of B] {$C$} ;
\node[draw,circle] (D) [right=2cm of C] {$D$} ;
\node[draw,circle] (A) [below=2cm of C] {$A$} ;
\draw[postaction=decorate] (A) to[bend left] node[midway,above]{$\cdots$} (B) ;
\draw[postaction=decorate] (B) to[bend left] node[midway,below]{$\cdots$} (A);
\draw[postaction=decorate] (A) to[bend left] node[midway,right]{$\cdots$} (C) ;
\draw[postaction=decorate] (C) to[bend left] node[midway,left]{$\cdots$} (A);
\draw[postaction=decorate] (C) to[bend left] node[midway,left]{$\cdots$} (B) ;
\draw[postaction=decorate] (B) to[bend left] node[midway,right]{$\cdots$} (C);
\draw[postaction=decorate] (C) to[bend left] node[midway,above]{$\cdots$} (D) ;
\draw[postaction=decorate] (D) to[bend left] node[midway,below]{$\cdots$} (C);
\draw[postaction=decorate] (D) to[bend left] node[midway,above]{$\cdots$} (A) ;
\draw[postaction=decorate] (A) to[bend left] node[midway,below]{$\cdots$} (D);
\end{tikzpicture}

Réponses

  • Bonsoir,
    Tu pourrais ajouter un paramètre de courbure, e.g. 9 :
    bend left=9
    
Connectez-vous ou Inscrivez-vous pour répondre.