Control más preciso sobre los bordes doblados

Control más preciso sobre los bordes doblados

Aquí está mi código:

\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{arrows, automata}

\begin{document}

\begin{tikzpicture}[
        > = stealth, % arrow head style
        shorten > = 1pt, % don't touch arrow head to node
        auto,
        node distance = 3cm, % distance between nodes
        semithick % line style
    ]

    \tikzstyle{every state}=[
    draw = black,
    thick,
    fill = white,
    minimum size = 4mm
    ]
    
    \node[state] (a) at (0,4) {A};
    \node[state] (b) at (4,4) {B};
    \node[state] (c) at (2,2) {C};
    \node[state] (d) at (0,0) {D};
    \node[state] (e) at (4,0) {E};
    
    \path[->] (a) edge node {$e_1$} (b);
    \path[->] (b) edge node {$e_2$} (e);
    \path[->] (a) edge node {$e_3$} (c);
    \path[->] (c) edge node {$e_4$} (e);
    \path[->] (d) edge node {$e_5$} (e);
    \path[->] (a) edge node {$e_6$} (d);
    \path[->, style={bend left = 145}] (b) edge node {$e_7$} (d);
\end{tikzpicture}

\end{document}

Este es el resultado que produce: Resultado

Estoy intentando que el borde e_7 se doble alrededor del nodo E como se muestra en la siguiente imagen. Resultado deseado

¿Cómo haría para controlar cómo se dobla e_7?

Respuesta1

Podrías usar una curva de Bézier con los puntos de control un poco al sureste de E.

ingrese la descripción de la imagen aquí

\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{arrows, automata,calc}

\begin{document}

\begin{tikzpicture}[
        > = stealth, % arrow head style
        shorten > = 1pt, % don't touch arrow head to node
        auto,
        node distance = 3cm, % distance between nodes
        semithick % line style
    ]

    \tikzstyle{every state}=[
    draw = black,
    thick,
    fill = white,
    minimum size = 4mm
    ]

    \node[state] (a) at (0,4) {A};
    \node[state] (b) at (4,4) {B};
    \node[state] (c) at (2,2) {C};
    \node[state] (d) at (0,0) {D};
    \node[state] (e) at (4,0) {E};

    \path[->] (a) edge node {$e_1$} (b);
    \path[->] (b) edge node {$e_2$} (e);
    \path[->] (a) edge node {$e_3$} (c);
    \path[->] (c) edge node {$e_4$} (e);
    \path[->] (d) edge node {$e_5$} (e);
    \path[->] (a) edge node {$e_6$} (d);
    %                                V--V - change here to adjust
    \path[->,draw] (b) .. controls ($(e)+(2,-1)$) .. node {$e_7$} (d);
\end{tikzpicture}

\end{document}

Respuesta2

Alternativa a la respuesta de Phelpe Oleinik:

\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{arrows, automata,calc}

\begin{document}

\begin{tikzpicture}[
        > = stealth, % arrow head style
        shorten > = 1pt, % don't touch arrow head to node
        auto,
        node distance = 3cm, % distance between nodes
        semithick % line style
    ]

    \tikzstyle{every state}=[
    draw = black,
    thick,
    fill = white,
    minimum size = 4mm
    ]

    \node[state] (a) at (0,4) {A};
    \node[state] (b) at (4,4) {B};
    \node[state] (c) at (2,2) {C};
    \node[state] (d) at (0,0) {D};
    \node[state] (e) at (4,0) {E};

    \path[->] (a) edge node {$e_1$} (b);
    \path[->] (b) edge node {$e_2$} (e);
    \path[->] (a) edge node {$e_3$} (c);
    \path[->] (c) edge node {$e_4$} (e);
    \path[->] (d) edge node {$e_5$} (e);
    \path[->] (a) edge node {$e_6$} (d);
    \draw[->] (b) to[in= 45,out=-45]  ($(e)+(0.5,-0.5)$)node[right]{$e_7$} to[in= -45,out=-135] (d);
\end{tikzpicture}

\end{document}

ingrese la descripción de la imagen aquí

Respuesta3

También existe la loosenessopción que podría usarse aquí:

\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{arrows, automata}

\begin{document}

\begin{tikzpicture}[
        > = stealth, % arrow head style
        shorten > = 1pt, % don't touch arrow head to node
        auto,
        node distance = 3cm, % distance between nodes
        semithick % line style
    ]

    \tikzstyle{every state}=[
    draw = black,
    thick,
    fill = white,
    minimum size = 4mm
    ]

    \node[state] (a) at (0,4) {A};
    \node[state] (b) at (4,4) {B};
    \node[state] (c) at (2,2) {C};
    \node[state] (d) at (0,0) {D};
    \node[state] (e) at (4,0) {E};

    \path[->] (a) edge node {$e_1$} (b);
    \path[->] (b) edge node {$e_2$} (e);
    \path[->] (a) edge node {$e_3$} (c);
    \path[->] (c) edge node {$e_4$} (e);
    \path[->] (d) edge node {$e_5$} (e);
    \path[->] (a) edge node {$e_6$} (d);
    \path[->, style={bend left = 70, looseness = 2}] (b) edge node {$e_7$} (d);
\end{tikzpicture}

\end{document}

ingrese la descripción de la imagen aquí

información relacionada