Arrows in tikz Markov chain diagram overlap The Next CEO of Stack OverflowRotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?To wrap the external lines so that it can touch the perimeterChanging Size of Arrows, Labels, Loops in Diagrams and Directed GraphsDraw edge on arcNumerical conditional within tikz keys?Drawing a bent path as a loop in tikzDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of themCommutative diagram with curve connecting between nodes

Incomplete cube

How to find if SQL server backup is encrypted with TDE without restoring the backup

Find a path from s to t using as few red nodes as possible

Can this transistor (2N2222) take 6 V on emitter-base? Am I reading the datasheet incorrectly?

Do I need to write [sic] when including a quotation with a number less than 10 that isn't written out?

Small nick on power cord from an electric alarm clock, and copper wiring exposed but intact

My boss doesn't want me to have a side project

Are British MPs missing the point, with these 'Indicative Votes'?

A hang glider, sudden unexpected lift to 25,000 feet altitude, what could do this?

How can I replace x-axis labels with pre-determined symbols?

Why did the Drakh emissary look so blurred in S04:E11 "Lines of Communication"?

Upgrading From a 9 Speed Sora Derailleur?

Why was Sir Cadogan fired?

What does this strange code stamp on my passport mean?

Mathematica command that allows it to read my intentions

Finitely generated matrix groups whose eigenvalues are all algebraic

How to coordinate airplane tickets?

Salesforce opportunity stages

Cannot restore registry to default in Windows 10?

Can a PhD from a non-TU9 German university become a professor in a TU9 university?

How can I separate the number from the unit in argument?

pgfplots: How to draw a tangent graph below two others?

How should I connect my cat5 cable to connectors having an orange-green line?

Does the Idaho Potato Commission associate potato skins with healthy eating?



Arrows in tikz Markov chain diagram overlap



The Next CEO of Stack OverflowRotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?To wrap the external lines so that it can touch the perimeterChanging Size of Arrows, Labels, Loops in Diagrams and Directed GraphsDraw edge on arcNumerical conditional within tikz keys?Drawing a bent path as a loop in tikzDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of themCommutative diagram with curve connecting between nodes










2















I am trying to draw a Markov chain using tikz. The diagram is in the correct setup except the arrow going from State 2 and 3 overlaps two other arrows. I tried repositioning the states using node distance but that did not seem to work. How can I force the arrows not to overlap?
Markov Chain



%latex
documentclass[reqno]amsart
usepackageamsmath
usepackageamssymb
usepackagehyperref
usepackagepgfplots

usepgfplotslibraryfillbetween

usepackagetikz
usetikzlibraryautomata
usetikzlibrarypositioning % ...positioning nodes
usetikzlibraryarrows % ...customizing arrows
tikzsetnode distance=4.5cm, % Minimum distance between two nodes. Change if necessary.
every state/.style= % Sets the properties for each state
semithick,
fill=gray!10,
initial text=, % No label on start arrow
double distance=4pt, % Adjust appearance of accept states
every edge/.style= % Sets the properties for each transition
draw,
->,>=stealth', % Makes edges directed with bold arrowheads
auto,
semithick

begindocument

beginfigure[htb]
centering
begintikzpicture
node[state] (s1) State 1;
node[state, below right of=s1] (s2) State 2;
node[state, below left of=s1] (s3) State 3;

draw (s1) edge[loop above] node (s1);
draw (s1) edge[bend left] node (s2);
draw (s1) edge[bend right] node (s3);

draw (s2) edge[bend left] node (s1);
draw (s2) edge[loop right] node (s2);
draw (s2) edge[bend right] node (s3);

draw (s3) edge[bend right] node (s1);
draw (s3) edge[bend right] node (s2);
draw (s3) edge[loop left] node (s3);

endtikzpicture
endfigure

enddocument









share|improve this question


























    2















    I am trying to draw a Markov chain using tikz. The diagram is in the correct setup except the arrow going from State 2 and 3 overlaps two other arrows. I tried repositioning the states using node distance but that did not seem to work. How can I force the arrows not to overlap?
    Markov Chain



    %latex
    documentclass[reqno]amsart
    usepackageamsmath
    usepackageamssymb
    usepackagehyperref
    usepackagepgfplots

    usepgfplotslibraryfillbetween

    usepackagetikz
    usetikzlibraryautomata
    usetikzlibrarypositioning % ...positioning nodes
    usetikzlibraryarrows % ...customizing arrows
    tikzsetnode distance=4.5cm, % Minimum distance between two nodes. Change if necessary.
    every state/.style= % Sets the properties for each state
    semithick,
    fill=gray!10,
    initial text=, % No label on start arrow
    double distance=4pt, % Adjust appearance of accept states
    every edge/.style= % Sets the properties for each transition
    draw,
    ->,>=stealth', % Makes edges directed with bold arrowheads
    auto,
    semithick

    begindocument

    beginfigure[htb]
    centering
    begintikzpicture
    node[state] (s1) State 1;
    node[state, below right of=s1] (s2) State 2;
    node[state, below left of=s1] (s3) State 3;

    draw (s1) edge[loop above] node (s1);
    draw (s1) edge[bend left] node (s2);
    draw (s1) edge[bend right] node (s3);

    draw (s2) edge[bend left] node (s1);
    draw (s2) edge[loop right] node (s2);
    draw (s2) edge[bend right] node (s3);

    draw (s3) edge[bend right] node (s1);
    draw (s3) edge[bend right] node (s2);
    draw (s3) edge[loop left] node (s3);

    endtikzpicture
    endfigure

    enddocument









    share|improve this question
























      2












      2








      2








      I am trying to draw a Markov chain using tikz. The diagram is in the correct setup except the arrow going from State 2 and 3 overlaps two other arrows. I tried repositioning the states using node distance but that did not seem to work. How can I force the arrows not to overlap?
      Markov Chain



      %latex
      documentclass[reqno]amsart
      usepackageamsmath
      usepackageamssymb
      usepackagehyperref
      usepackagepgfplots

      usepgfplotslibraryfillbetween

      usepackagetikz
      usetikzlibraryautomata
      usetikzlibrarypositioning % ...positioning nodes
      usetikzlibraryarrows % ...customizing arrows
      tikzsetnode distance=4.5cm, % Minimum distance between two nodes. Change if necessary.
      every state/.style= % Sets the properties for each state
      semithick,
      fill=gray!10,
      initial text=, % No label on start arrow
      double distance=4pt, % Adjust appearance of accept states
      every edge/.style= % Sets the properties for each transition
      draw,
      ->,>=stealth', % Makes edges directed with bold arrowheads
      auto,
      semithick

      begindocument

      beginfigure[htb]
      centering
      begintikzpicture
      node[state] (s1) State 1;
      node[state, below right of=s1] (s2) State 2;
      node[state, below left of=s1] (s3) State 3;

      draw (s1) edge[loop above] node (s1);
      draw (s1) edge[bend left] node (s2);
      draw (s1) edge[bend right] node (s3);

      draw (s2) edge[bend left] node (s1);
      draw (s2) edge[loop right] node (s2);
      draw (s2) edge[bend right] node (s3);

      draw (s3) edge[bend right] node (s1);
      draw (s3) edge[bend right] node (s2);
      draw (s3) edge[loop left] node (s3);

      endtikzpicture
      endfigure

      enddocument









      share|improve this question














      I am trying to draw a Markov chain using tikz. The diagram is in the correct setup except the arrow going from State 2 and 3 overlaps two other arrows. I tried repositioning the states using node distance but that did not seem to work. How can I force the arrows not to overlap?
      Markov Chain



      %latex
      documentclass[reqno]amsart
      usepackageamsmath
      usepackageamssymb
      usepackagehyperref
      usepackagepgfplots

      usepgfplotslibraryfillbetween

      usepackagetikz
      usetikzlibraryautomata
      usetikzlibrarypositioning % ...positioning nodes
      usetikzlibraryarrows % ...customizing arrows
      tikzsetnode distance=4.5cm, % Minimum distance between two nodes. Change if necessary.
      every state/.style= % Sets the properties for each state
      semithick,
      fill=gray!10,
      initial text=, % No label on start arrow
      double distance=4pt, % Adjust appearance of accept states
      every edge/.style= % Sets the properties for each transition
      draw,
      ->,>=stealth', % Makes edges directed with bold arrowheads
      auto,
      semithick

      begindocument

      beginfigure[htb]
      centering
      begintikzpicture
      node[state] (s1) State 1;
      node[state, below right of=s1] (s2) State 2;
      node[state, below left of=s1] (s3) State 3;

      draw (s1) edge[loop above] node (s1);
      draw (s1) edge[bend left] node (s2);
      draw (s1) edge[bend right] node (s3);

      draw (s2) edge[bend left] node (s1);
      draw (s2) edge[loop right] node (s2);
      draw (s2) edge[bend right] node (s3);

      draw (s3) edge[bend right] node (s1);
      draw (s3) edge[bend right] node (s2);
      draw (s3) edge[loop left] node (s3);

      endtikzpicture
      endfigure

      enddocument






      tikz-pgf diagrams






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 2 hours ago









      cpagecpage

      15515




      15515




















          2 Answers
          2






          active

          oldest

          votes


















          3














          bend left and bend right come with parameters, the bending angles. Adjusting them allows you to avoid the intersections. (BTW, I also removed packages that were not used. Note also that the arrows library got superseded by arrows.meta but I kept arrows for now.)



          documentclass[reqno]amsart
          usepackagetikz
          usetikzlibraryautomata
          usetikzlibrarypositioning % ...positioning nodes
          usetikzlibraryarrows % ...customizing arrows
          tikzsetnode distance=4.5cm, % Minimum distance between two nodes. Change if necessary.
          every state/.style= % Sets the properties for each state
          semithick,
          fill=gray!10,
          initial text=, % No label on start arrow
          double distance=4pt, % Adjust appearance of accept states
          every edge/.style= % Sets the properties for each transition
          draw,
          ->,>=stealth', % Makes edges directed with bold arrowheads
          auto,
          semithick

          begindocument

          beginfigure[htb]
          centering
          begintikzpicture
          node[state] (s1) State 1;
          node[state, below right of=s1] (s2) State 2;
          node[state, below left of=s1] (s3) State 3;

          draw (s1) edge[loop above] (s1);
          draw (s1) edge[bend left] (s2);
          draw (s1) edge[bend right] (s3);

          draw (s2) edge[bend left=12] (s1);
          draw (s2) edge[loop right] (s2);
          draw (s2) edge[bend right=12] (s3);

          draw (s3) edge[bend right=12] (s1);
          draw (s3) edge[bend right] (s2);
          draw (s3) edge[loop left] (s3);

          endtikzpicture
          endfigure
          enddocument


          enter image description here






          share|improve this answer






























            0














            you can reduce default value of bend angle. just add bend angle=15 to your tikzset (similarly @marmoth change it locally for two arrows bend).



            off topic:



            • for labeling of arrows is handy to use quotes library and than wrote it as for example ... (s1) edge["label",bend left] (s2).


            • package hyperref had to be load last in preamble (except in rare exception)



              documentclass[reqno]amsart
              usepackageamsmath, amssymb

              usepackagepgfplots % it load tikz too
              pgfplotssetcompat=1.16
              usetikzlibraryautomata,
              arrows.meta, % ...customizing arrows
              positioning, % ...positioning nodes
              quotes % For edge labels
              usepgfplotslibraryfillbetween
              tikzsetnode distance=4.5cm, % Minimum distance between nodes. Change if necessary.
              every state/.style= % Sets the properties for each state
              semithick,
              fill=gray!10,
              initial text=, % No label on start arrow
              double distance=4pt, % Adjust appearance of accept states
              every edge/.style= % Sets the properties for each transition
              draw,
              semithick,
              -Stealth, % Makes edges directed with bold arrowheads
              auto,
              bend angle=15 % Reduce default bend angle


              usepackagehyperref % had to be last in preamble

              begindocument
              beginfigure[htb]
              centering
              begintikzpicture[]
              node[state] (s1) State 1;
              node[state, below right of=s1] (s2) State 2;
              node[state, below left of=s1] (s3) State 3;

              draw (s1) edge[loop above] (s1)
              (s1) edge[bend left] (s2)
              (s1) edge[bend right] (s3)
              %
              (s2) edge[bend left] (s1)
              (s2) edge[loop right] (s2)
              (s2) edge[bend right] (s3)
              %
              (s3) edge[bend right] (s1)
              (s3) edge[bend right] (s2)
              (s3) edge[loop left] (s3);
              endtikzpicture
              endfigure
              enddocument


            enter image description here






            share|improve this answer























              Your Answer








              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "85"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f482673%2farrows-in-tikz-markov-chain-diagram-overlap%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              3














              bend left and bend right come with parameters, the bending angles. Adjusting them allows you to avoid the intersections. (BTW, I also removed packages that were not used. Note also that the arrows library got superseded by arrows.meta but I kept arrows for now.)



              documentclass[reqno]amsart
              usepackagetikz
              usetikzlibraryautomata
              usetikzlibrarypositioning % ...positioning nodes
              usetikzlibraryarrows % ...customizing arrows
              tikzsetnode distance=4.5cm, % Minimum distance between two nodes. Change if necessary.
              every state/.style= % Sets the properties for each state
              semithick,
              fill=gray!10,
              initial text=, % No label on start arrow
              double distance=4pt, % Adjust appearance of accept states
              every edge/.style= % Sets the properties for each transition
              draw,
              ->,>=stealth', % Makes edges directed with bold arrowheads
              auto,
              semithick

              begindocument

              beginfigure[htb]
              centering
              begintikzpicture
              node[state] (s1) State 1;
              node[state, below right of=s1] (s2) State 2;
              node[state, below left of=s1] (s3) State 3;

              draw (s1) edge[loop above] (s1);
              draw (s1) edge[bend left] (s2);
              draw (s1) edge[bend right] (s3);

              draw (s2) edge[bend left=12] (s1);
              draw (s2) edge[loop right] (s2);
              draw (s2) edge[bend right=12] (s3);

              draw (s3) edge[bend right=12] (s1);
              draw (s3) edge[bend right] (s2);
              draw (s3) edge[loop left] (s3);

              endtikzpicture
              endfigure
              enddocument


              enter image description here






              share|improve this answer



























                3














                bend left and bend right come with parameters, the bending angles. Adjusting them allows you to avoid the intersections. (BTW, I also removed packages that were not used. Note also that the arrows library got superseded by arrows.meta but I kept arrows for now.)



                documentclass[reqno]amsart
                usepackagetikz
                usetikzlibraryautomata
                usetikzlibrarypositioning % ...positioning nodes
                usetikzlibraryarrows % ...customizing arrows
                tikzsetnode distance=4.5cm, % Minimum distance between two nodes. Change if necessary.
                every state/.style= % Sets the properties for each state
                semithick,
                fill=gray!10,
                initial text=, % No label on start arrow
                double distance=4pt, % Adjust appearance of accept states
                every edge/.style= % Sets the properties for each transition
                draw,
                ->,>=stealth', % Makes edges directed with bold arrowheads
                auto,
                semithick

                begindocument

                beginfigure[htb]
                centering
                begintikzpicture
                node[state] (s1) State 1;
                node[state, below right of=s1] (s2) State 2;
                node[state, below left of=s1] (s3) State 3;

                draw (s1) edge[loop above] (s1);
                draw (s1) edge[bend left] (s2);
                draw (s1) edge[bend right] (s3);

                draw (s2) edge[bend left=12] (s1);
                draw (s2) edge[loop right] (s2);
                draw (s2) edge[bend right=12] (s3);

                draw (s3) edge[bend right=12] (s1);
                draw (s3) edge[bend right] (s2);
                draw (s3) edge[loop left] (s3);

                endtikzpicture
                endfigure
                enddocument


                enter image description here






                share|improve this answer

























                  3












                  3








                  3







                  bend left and bend right come with parameters, the bending angles. Adjusting them allows you to avoid the intersections. (BTW, I also removed packages that were not used. Note also that the arrows library got superseded by arrows.meta but I kept arrows for now.)



                  documentclass[reqno]amsart
                  usepackagetikz
                  usetikzlibraryautomata
                  usetikzlibrarypositioning % ...positioning nodes
                  usetikzlibraryarrows % ...customizing arrows
                  tikzsetnode distance=4.5cm, % Minimum distance between two nodes. Change if necessary.
                  every state/.style= % Sets the properties for each state
                  semithick,
                  fill=gray!10,
                  initial text=, % No label on start arrow
                  double distance=4pt, % Adjust appearance of accept states
                  every edge/.style= % Sets the properties for each transition
                  draw,
                  ->,>=stealth', % Makes edges directed with bold arrowheads
                  auto,
                  semithick

                  begindocument

                  beginfigure[htb]
                  centering
                  begintikzpicture
                  node[state] (s1) State 1;
                  node[state, below right of=s1] (s2) State 2;
                  node[state, below left of=s1] (s3) State 3;

                  draw (s1) edge[loop above] (s1);
                  draw (s1) edge[bend left] (s2);
                  draw (s1) edge[bend right] (s3);

                  draw (s2) edge[bend left=12] (s1);
                  draw (s2) edge[loop right] (s2);
                  draw (s2) edge[bend right=12] (s3);

                  draw (s3) edge[bend right=12] (s1);
                  draw (s3) edge[bend right] (s2);
                  draw (s3) edge[loop left] (s3);

                  endtikzpicture
                  endfigure
                  enddocument


                  enter image description here






                  share|improve this answer













                  bend left and bend right come with parameters, the bending angles. Adjusting them allows you to avoid the intersections. (BTW, I also removed packages that were not used. Note also that the arrows library got superseded by arrows.meta but I kept arrows for now.)



                  documentclass[reqno]amsart
                  usepackagetikz
                  usetikzlibraryautomata
                  usetikzlibrarypositioning % ...positioning nodes
                  usetikzlibraryarrows % ...customizing arrows
                  tikzsetnode distance=4.5cm, % Minimum distance between two nodes. Change if necessary.
                  every state/.style= % Sets the properties for each state
                  semithick,
                  fill=gray!10,
                  initial text=, % No label on start arrow
                  double distance=4pt, % Adjust appearance of accept states
                  every edge/.style= % Sets the properties for each transition
                  draw,
                  ->,>=stealth', % Makes edges directed with bold arrowheads
                  auto,
                  semithick

                  begindocument

                  beginfigure[htb]
                  centering
                  begintikzpicture
                  node[state] (s1) State 1;
                  node[state, below right of=s1] (s2) State 2;
                  node[state, below left of=s1] (s3) State 3;

                  draw (s1) edge[loop above] (s1);
                  draw (s1) edge[bend left] (s2);
                  draw (s1) edge[bend right] (s3);

                  draw (s2) edge[bend left=12] (s1);
                  draw (s2) edge[loop right] (s2);
                  draw (s2) edge[bend right=12] (s3);

                  draw (s3) edge[bend right=12] (s1);
                  draw (s3) edge[bend right] (s2);
                  draw (s3) edge[loop left] (s3);

                  endtikzpicture
                  endfigure
                  enddocument


                  enter image description here







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 2 hours ago









                  marmotmarmot

                  113k5145275




                  113k5145275





















                      0














                      you can reduce default value of bend angle. just add bend angle=15 to your tikzset (similarly @marmoth change it locally for two arrows bend).



                      off topic:



                      • for labeling of arrows is handy to use quotes library and than wrote it as for example ... (s1) edge["label",bend left] (s2).


                      • package hyperref had to be load last in preamble (except in rare exception)



                        documentclass[reqno]amsart
                        usepackageamsmath, amssymb

                        usepackagepgfplots % it load tikz too
                        pgfplotssetcompat=1.16
                        usetikzlibraryautomata,
                        arrows.meta, % ...customizing arrows
                        positioning, % ...positioning nodes
                        quotes % For edge labels
                        usepgfplotslibraryfillbetween
                        tikzsetnode distance=4.5cm, % Minimum distance between nodes. Change if necessary.
                        every state/.style= % Sets the properties for each state
                        semithick,
                        fill=gray!10,
                        initial text=, % No label on start arrow
                        double distance=4pt, % Adjust appearance of accept states
                        every edge/.style= % Sets the properties for each transition
                        draw,
                        semithick,
                        -Stealth, % Makes edges directed with bold arrowheads
                        auto,
                        bend angle=15 % Reduce default bend angle


                        usepackagehyperref % had to be last in preamble

                        begindocument
                        beginfigure[htb]
                        centering
                        begintikzpicture[]
                        node[state] (s1) State 1;
                        node[state, below right of=s1] (s2) State 2;
                        node[state, below left of=s1] (s3) State 3;

                        draw (s1) edge[loop above] (s1)
                        (s1) edge[bend left] (s2)
                        (s1) edge[bend right] (s3)
                        %
                        (s2) edge[bend left] (s1)
                        (s2) edge[loop right] (s2)
                        (s2) edge[bend right] (s3)
                        %
                        (s3) edge[bend right] (s1)
                        (s3) edge[bend right] (s2)
                        (s3) edge[loop left] (s3);
                        endtikzpicture
                        endfigure
                        enddocument


                      enter image description here






                      share|improve this answer



























                        0














                        you can reduce default value of bend angle. just add bend angle=15 to your tikzset (similarly @marmoth change it locally for two arrows bend).



                        off topic:



                        • for labeling of arrows is handy to use quotes library and than wrote it as for example ... (s1) edge["label",bend left] (s2).


                        • package hyperref had to be load last in preamble (except in rare exception)



                          documentclass[reqno]amsart
                          usepackageamsmath, amssymb

                          usepackagepgfplots % it load tikz too
                          pgfplotssetcompat=1.16
                          usetikzlibraryautomata,
                          arrows.meta, % ...customizing arrows
                          positioning, % ...positioning nodes
                          quotes % For edge labels
                          usepgfplotslibraryfillbetween
                          tikzsetnode distance=4.5cm, % Minimum distance between nodes. Change if necessary.
                          every state/.style= % Sets the properties for each state
                          semithick,
                          fill=gray!10,
                          initial text=, % No label on start arrow
                          double distance=4pt, % Adjust appearance of accept states
                          every edge/.style= % Sets the properties for each transition
                          draw,
                          semithick,
                          -Stealth, % Makes edges directed with bold arrowheads
                          auto,
                          bend angle=15 % Reduce default bend angle


                          usepackagehyperref % had to be last in preamble

                          begindocument
                          beginfigure[htb]
                          centering
                          begintikzpicture[]
                          node[state] (s1) State 1;
                          node[state, below right of=s1] (s2) State 2;
                          node[state, below left of=s1] (s3) State 3;

                          draw (s1) edge[loop above] (s1)
                          (s1) edge[bend left] (s2)
                          (s1) edge[bend right] (s3)
                          %
                          (s2) edge[bend left] (s1)
                          (s2) edge[loop right] (s2)
                          (s2) edge[bend right] (s3)
                          %
                          (s3) edge[bend right] (s1)
                          (s3) edge[bend right] (s2)
                          (s3) edge[loop left] (s3);
                          endtikzpicture
                          endfigure
                          enddocument


                        enter image description here






                        share|improve this answer

























                          0












                          0








                          0







                          you can reduce default value of bend angle. just add bend angle=15 to your tikzset (similarly @marmoth change it locally for two arrows bend).



                          off topic:



                          • for labeling of arrows is handy to use quotes library and than wrote it as for example ... (s1) edge["label",bend left] (s2).


                          • package hyperref had to be load last in preamble (except in rare exception)



                            documentclass[reqno]amsart
                            usepackageamsmath, amssymb

                            usepackagepgfplots % it load tikz too
                            pgfplotssetcompat=1.16
                            usetikzlibraryautomata,
                            arrows.meta, % ...customizing arrows
                            positioning, % ...positioning nodes
                            quotes % For edge labels
                            usepgfplotslibraryfillbetween
                            tikzsetnode distance=4.5cm, % Minimum distance between nodes. Change if necessary.
                            every state/.style= % Sets the properties for each state
                            semithick,
                            fill=gray!10,
                            initial text=, % No label on start arrow
                            double distance=4pt, % Adjust appearance of accept states
                            every edge/.style= % Sets the properties for each transition
                            draw,
                            semithick,
                            -Stealth, % Makes edges directed with bold arrowheads
                            auto,
                            bend angle=15 % Reduce default bend angle


                            usepackagehyperref % had to be last in preamble

                            begindocument
                            beginfigure[htb]
                            centering
                            begintikzpicture[]
                            node[state] (s1) State 1;
                            node[state, below right of=s1] (s2) State 2;
                            node[state, below left of=s1] (s3) State 3;

                            draw (s1) edge[loop above] (s1)
                            (s1) edge[bend left] (s2)
                            (s1) edge[bend right] (s3)
                            %
                            (s2) edge[bend left] (s1)
                            (s2) edge[loop right] (s2)
                            (s2) edge[bend right] (s3)
                            %
                            (s3) edge[bend right] (s1)
                            (s3) edge[bend right] (s2)
                            (s3) edge[loop left] (s3);
                            endtikzpicture
                            endfigure
                            enddocument


                          enter image description here






                          share|improve this answer













                          you can reduce default value of bend angle. just add bend angle=15 to your tikzset (similarly @marmoth change it locally for two arrows bend).



                          off topic:



                          • for labeling of arrows is handy to use quotes library and than wrote it as for example ... (s1) edge["label",bend left] (s2).


                          • package hyperref had to be load last in preamble (except in rare exception)



                            documentclass[reqno]amsart
                            usepackageamsmath, amssymb

                            usepackagepgfplots % it load tikz too
                            pgfplotssetcompat=1.16
                            usetikzlibraryautomata,
                            arrows.meta, % ...customizing arrows
                            positioning, % ...positioning nodes
                            quotes % For edge labels
                            usepgfplotslibraryfillbetween
                            tikzsetnode distance=4.5cm, % Minimum distance between nodes. Change if necessary.
                            every state/.style= % Sets the properties for each state
                            semithick,
                            fill=gray!10,
                            initial text=, % No label on start arrow
                            double distance=4pt, % Adjust appearance of accept states
                            every edge/.style= % Sets the properties for each transition
                            draw,
                            semithick,
                            -Stealth, % Makes edges directed with bold arrowheads
                            auto,
                            bend angle=15 % Reduce default bend angle


                            usepackagehyperref % had to be last in preamble

                            begindocument
                            beginfigure[htb]
                            centering
                            begintikzpicture[]
                            node[state] (s1) State 1;
                            node[state, below right of=s1] (s2) State 2;
                            node[state, below left of=s1] (s3) State 3;

                            draw (s1) edge[loop above] (s1)
                            (s1) edge[bend left] (s2)
                            (s1) edge[bend right] (s3)
                            %
                            (s2) edge[bend left] (s1)
                            (s2) edge[loop right] (s2)
                            (s2) edge[bend right] (s3)
                            %
                            (s3) edge[bend right] (s1)
                            (s3) edge[bend right] (s2)
                            (s3) edge[loop left] (s3);
                            endtikzpicture
                            endfigure
                            enddocument


                          enter image description here







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered 1 hour ago









                          ZarkoZarko

                          128k868169




                          128k868169



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f482673%2farrows-in-tikz-markov-chain-diagram-overlap%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Can not update quote_id field of “quote_item” table magento 2Magento 2.1 - We can't remove the item. (Shopping Cart doesnt allow us to remove items before becomes empty)Add value for custom quote item attribute using REST apiREST API endpoint v1/carts/cartId/items always returns error messageCorrect way to save entries to databaseHow to remove all associated quote objects of a customer completelyMagento 2 - Save value from custom input field to quote_itemGet quote_item data using quote id and product id filter in Magento 2How to set additional data to quote_item table from controller in Magento 2?What is the purpose of additional_data column in quote_item table in magento2Set Custom Price to Quote item magento2 from controller

                              Magento 2 disable Secret Key on URL's from terminal The Next CEO of Stack OverflowMagento 2 Shortcut/GUI tool to perform commandline tasks for windowsIn menu add configuration linkMagento oAuth : Generating access token and access secretMagento 2 security key issue in Third-Party API redirect URIPublic actions in admin controllersHow to Disable Cache in Custom WidgetURL Key not changing in Magento 2Product URL Key gets deleted when importing custom options - Magento 2Problem with reindex terminalMagento 2 - bin/magento Commands not working in Cpanel Terminal

                              Aasi (pallopeli) Navigointivalikko