Typsetting diagram chases (with TikZ?) Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)How to define the default vertical distance between nodes?To wrap the external lines so that it can touch the perimeterDraw edge on arcNumerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of themHow to place nodes in an absolute coordinate system in tikzCommutative diagram with curve connecting between nodesTikz with standalone: pinning tikz coordinates to page cm

Need a suitable toxic chemical for a murder plot in my novel

How is simplicity better than precision and clarity in prose?

What was the last x86 CPU that did not have the x87 floating-point unit built in?

How to market an anarchic city as a tourism spot to people living in civilized areas?

Typsetting diagram chases (with TikZ?)

What loss function to use when labels are probabilities?

Direct Experience of Meditation

Can a zero nonce be safely used with AES-GCM if the key is random and never used again?

New Order #5: where Fibonacci and Beatty meet at Wythoff

Stars Make Stars

How to say that you spent the night with someone, you were only sleeping and nothing else?

How can I protect witches in combat who wear limited clothing?

Can I throw a longsword at someone?

Who can trigger ship-wide alerts in Star Trek?

How can players take actions together that are impossible otherwise?

Stop battery usage [Ubuntu 18]

Jazz greats knew nothing of modes. Why are they used to improvise on standards?

How to rotate it perfectly?

Why is "Captain Marvel" translated as male in Portugal?

Was credit for the black hole image misattributed?

How should I respond to a player wanting to catch a sword between their hands?

How does modal jazz use chord progressions?

Single author papers against my advisor's will?

Antler Helmet: Can it work?



Typsetting diagram chases (with TikZ?)



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)How to define the default vertical distance between nodes?To wrap the external lines so that it can touch the perimeterDraw edge on arcNumerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of themHow to place nodes in an absolute coordinate system in tikzCommutative diagram with curve connecting between nodesTikz with standalone: pinning tikz coordinates to page cm










2















Background. I recently came across a Youtube video with a bunch of really nicely typeset 'diagram chases' that seem to have been made in TeX (perhaps TikZ?):



Exmples of a diagram chase



I'd like to create something similar for a presentation that I'm working on, but I feel a bit lost when it comes to figuring out a systematic/scalable way to this.



Own attempt. For small diagrams, it's possible to do this in a very ad hoc way, by just playing around with coordinates and the bend right and bend left attributes in TikZ. A quick example of what this might look like:



documentclassarticle

usepackagetikz
usetikzlibraryarrows.meta

begindocument

begintikzpicture[scale=1.5, bend left=15, bend right=15]

node (B) at (0,0) $B$;
node (B') at (0,-1) $B'$;
node (C) at (1,0) $C$;
node (C') at (1,-1) $C'$;

draw[->,gray] (B) -- (B');
draw[->,gray,shorten >= -1pt] (B') -- (C');
draw[->,gray,shorten >= -1pt] (B) -- (C);
draw[->,gray] (C) -- (C');

node (b) at (-0.3,0.2) footnotesize $b$;
node (bprime) at (-0.3,-1.2) footnotesize $b'$;
node (cbar) at (0.7,0.2) footnotesize $barc$;
node (cdiff) at (0.7,-1.3) footnotesize $c'-c''$;

path (b) edge [[scale=0.7]->[scale=0.7],bend left] node [left] (cbar);
path (b) edge [[scale=0.7]->[scale=0.7],bend right] node [left] (bprime);
path (bprime) edge [[scale=0.7]->[scale=0.7],bend right] node [left] (cdiff);
path (cbar) edge [[scale=0.7]->[scale=0.7],bend right, shorten >= -2pt, shorten <= -1pt] node [left] (cdiff);

endtikzpicture

enddocument


Result of own attempt



I think this gives a decent end result. But for larger diagrams, it would be an absolute nightmare to work with a code that is so messy and so heavily dependent on coordinates and tweaked parameters.



Thus, if anyone has suggestions (big or small) for a more clever way to do this (with or without TikZ) and/or a way to make my own approach a bit cleaner or more systematic somehow, that would be greatly appreciated!










share|improve this question
























  • The diagram was created with a very nice tool, but that is not TikZ (as far as I can see). Anyway, it is always possible to create the diagram using TikZ.

    – JouleV
    2 hours ago











  • Any other tools that you think could be useful? I'm definitely willing to try out other tools than TikZ if need be!

    – Oskar Henriksson
    1 hour ago















2















Background. I recently came across a Youtube video with a bunch of really nicely typeset 'diagram chases' that seem to have been made in TeX (perhaps TikZ?):



Exmples of a diagram chase



I'd like to create something similar for a presentation that I'm working on, but I feel a bit lost when it comes to figuring out a systematic/scalable way to this.



Own attempt. For small diagrams, it's possible to do this in a very ad hoc way, by just playing around with coordinates and the bend right and bend left attributes in TikZ. A quick example of what this might look like:



documentclassarticle

usepackagetikz
usetikzlibraryarrows.meta

begindocument

begintikzpicture[scale=1.5, bend left=15, bend right=15]

node (B) at (0,0) $B$;
node (B') at (0,-1) $B'$;
node (C) at (1,0) $C$;
node (C') at (1,-1) $C'$;

draw[->,gray] (B) -- (B');
draw[->,gray,shorten >= -1pt] (B') -- (C');
draw[->,gray,shorten >= -1pt] (B) -- (C);
draw[->,gray] (C) -- (C');

node (b) at (-0.3,0.2) footnotesize $b$;
node (bprime) at (-0.3,-1.2) footnotesize $b'$;
node (cbar) at (0.7,0.2) footnotesize $barc$;
node (cdiff) at (0.7,-1.3) footnotesize $c'-c''$;

path (b) edge [[scale=0.7]->[scale=0.7],bend left] node [left] (cbar);
path (b) edge [[scale=0.7]->[scale=0.7],bend right] node [left] (bprime);
path (bprime) edge [[scale=0.7]->[scale=0.7],bend right] node [left] (cdiff);
path (cbar) edge [[scale=0.7]->[scale=0.7],bend right, shorten >= -2pt, shorten <= -1pt] node [left] (cdiff);

endtikzpicture

enddocument


Result of own attempt



I think this gives a decent end result. But for larger diagrams, it would be an absolute nightmare to work with a code that is so messy and so heavily dependent on coordinates and tweaked parameters.



Thus, if anyone has suggestions (big or small) for a more clever way to do this (with or without TikZ) and/or a way to make my own approach a bit cleaner or more systematic somehow, that would be greatly appreciated!










share|improve this question
























  • The diagram was created with a very nice tool, but that is not TikZ (as far as I can see). Anyway, it is always possible to create the diagram using TikZ.

    – JouleV
    2 hours ago











  • Any other tools that you think could be useful? I'm definitely willing to try out other tools than TikZ if need be!

    – Oskar Henriksson
    1 hour ago













2












2








2








Background. I recently came across a Youtube video with a bunch of really nicely typeset 'diagram chases' that seem to have been made in TeX (perhaps TikZ?):



Exmples of a diagram chase



I'd like to create something similar for a presentation that I'm working on, but I feel a bit lost when it comes to figuring out a systematic/scalable way to this.



Own attempt. For small diagrams, it's possible to do this in a very ad hoc way, by just playing around with coordinates and the bend right and bend left attributes in TikZ. A quick example of what this might look like:



documentclassarticle

usepackagetikz
usetikzlibraryarrows.meta

begindocument

begintikzpicture[scale=1.5, bend left=15, bend right=15]

node (B) at (0,0) $B$;
node (B') at (0,-1) $B'$;
node (C) at (1,0) $C$;
node (C') at (1,-1) $C'$;

draw[->,gray] (B) -- (B');
draw[->,gray,shorten >= -1pt] (B') -- (C');
draw[->,gray,shorten >= -1pt] (B) -- (C);
draw[->,gray] (C) -- (C');

node (b) at (-0.3,0.2) footnotesize $b$;
node (bprime) at (-0.3,-1.2) footnotesize $b'$;
node (cbar) at (0.7,0.2) footnotesize $barc$;
node (cdiff) at (0.7,-1.3) footnotesize $c'-c''$;

path (b) edge [[scale=0.7]->[scale=0.7],bend left] node [left] (cbar);
path (b) edge [[scale=0.7]->[scale=0.7],bend right] node [left] (bprime);
path (bprime) edge [[scale=0.7]->[scale=0.7],bend right] node [left] (cdiff);
path (cbar) edge [[scale=0.7]->[scale=0.7],bend right, shorten >= -2pt, shorten <= -1pt] node [left] (cdiff);

endtikzpicture

enddocument


Result of own attempt



I think this gives a decent end result. But for larger diagrams, it would be an absolute nightmare to work with a code that is so messy and so heavily dependent on coordinates and tweaked parameters.



Thus, if anyone has suggestions (big or small) for a more clever way to do this (with or without TikZ) and/or a way to make my own approach a bit cleaner or more systematic somehow, that would be greatly appreciated!










share|improve this question
















Background. I recently came across a Youtube video with a bunch of really nicely typeset 'diagram chases' that seem to have been made in TeX (perhaps TikZ?):



Exmples of a diagram chase



I'd like to create something similar for a presentation that I'm working on, but I feel a bit lost when it comes to figuring out a systematic/scalable way to this.



Own attempt. For small diagrams, it's possible to do this in a very ad hoc way, by just playing around with coordinates and the bend right and bend left attributes in TikZ. A quick example of what this might look like:



documentclassarticle

usepackagetikz
usetikzlibraryarrows.meta

begindocument

begintikzpicture[scale=1.5, bend left=15, bend right=15]

node (B) at (0,0) $B$;
node (B') at (0,-1) $B'$;
node (C) at (1,0) $C$;
node (C') at (1,-1) $C'$;

draw[->,gray] (B) -- (B');
draw[->,gray,shorten >= -1pt] (B') -- (C');
draw[->,gray,shorten >= -1pt] (B) -- (C);
draw[->,gray] (C) -- (C');

node (b) at (-0.3,0.2) footnotesize $b$;
node (bprime) at (-0.3,-1.2) footnotesize $b'$;
node (cbar) at (0.7,0.2) footnotesize $barc$;
node (cdiff) at (0.7,-1.3) footnotesize $c'-c''$;

path (b) edge [[scale=0.7]->[scale=0.7],bend left] node [left] (cbar);
path (b) edge [[scale=0.7]->[scale=0.7],bend right] node [left] (bprime);
path (bprime) edge [[scale=0.7]->[scale=0.7],bend right] node [left] (cdiff);
path (cbar) edge [[scale=0.7]->[scale=0.7],bend right, shorten >= -2pt, shorten <= -1pt] node [left] (cdiff);

endtikzpicture

enddocument


Result of own attempt



I think this gives a decent end result. But for larger diagrams, it would be an absolute nightmare to work with a code that is so messy and so heavily dependent on coordinates and tweaked parameters.



Thus, if anyone has suggestions (big or small) for a more clever way to do this (with or without TikZ) and/or a way to make my own approach a bit cleaner or more systematic somehow, that would be greatly appreciated!







tikz-pgf diagrams tikz-cd commutative-diagrams






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 15 mins ago









JouleV

13.5k22664




13.5k22664










asked 2 hours ago









Oskar HenrikssonOskar Henriksson

1256




1256












  • The diagram was created with a very nice tool, but that is not TikZ (as far as I can see). Anyway, it is always possible to create the diagram using TikZ.

    – JouleV
    2 hours ago











  • Any other tools that you think could be useful? I'm definitely willing to try out other tools than TikZ if need be!

    – Oskar Henriksson
    1 hour ago

















  • The diagram was created with a very nice tool, but that is not TikZ (as far as I can see). Anyway, it is always possible to create the diagram using TikZ.

    – JouleV
    2 hours ago











  • Any other tools that you think could be useful? I'm definitely willing to try out other tools than TikZ if need be!

    – Oskar Henriksson
    1 hour ago
















The diagram was created with a very nice tool, but that is not TikZ (as far as I can see). Anyway, it is always possible to create the diagram using TikZ.

– JouleV
2 hours ago





The diagram was created with a very nice tool, but that is not TikZ (as far as I can see). Anyway, it is always possible to create the diagram using TikZ.

– JouleV
2 hours ago













Any other tools that you think could be useful? I'm definitely willing to try out other tools than TikZ if need be!

– Oskar Henriksson
1 hour ago





Any other tools that you think could be useful? I'm definitely willing to try out other tools than TikZ if need be!

– Oskar Henriksson
1 hour ago










1 Answer
1






active

oldest

votes


















3














We clearly can't avoid difficulties and complexity when dealing with such a complicated graph when using any kinds of tool, but by using matrices it has saved a lot of work.



documentclass[tikz]standalone
usetikzlibrarymatrix,positioning,arrows.meta
usepackagemathptmx
tikzsettoarrow/.style=[scale=0.7]->[scale=0.7],
backarrow/.style=<[scale=0.7]-[scale=0.7]
begindocument
begintikzpicture
matrix[matrix of math nodes,row sep=2cm,column sep=2cm] (m) %
A & B & C & D & E\
A' & B' & C' & D' & E'\;
path (m-1-2) node[above left=1.5ex and 1.5ex] (b) $b$
(m-1-3) node[above left=1.5ex and 1.5ex] (c) $c$
(m-1-4) node[above left=1.5ex and 1.5ex] (d) $d$
(m-1-5) node[above left=1.5ex and 1.5ex] (e) $e$
(m-2-2) node[below left=1.5ex and 1.5ex] (b2) $b'$
(m-2-3) node[below left=1.5ex and 1.5ex] (c2) $c'$
(m-2-4) node[below left=1.5ex and 1.5ex] (d2) $d'$
(m-2-5) node[below left=1.5ex and 1.5ex] (e2) $0$
(m-2-3) node[above left=1.5ex and 1.5ex] (c3) $c''$
(c) node[above left=1.5ex and -1.5ex] (cp) $overlinec+c$
(c2) node[below=1.5ex] (cm) $c'-c''$
(d2) node[below=1.5ex] (db) $0$
(e.base east) node[above right=-.3333em and -1ex] $=0$
(c.base west) node[above left=-.3333em and 1.5ex] (co) $overlinec$;
% Delete the following part to see what happens
foreach i [count=j from 2] in 1,2,3,4
draw[dotted,->] (m-1-i) -- (m-2-i);
draw[dotted,->] (m-1-i) -- (m-1-j);
draw[dotted,->] (m-2-i) -- (m-2-j);

draw[dotted,->] (m-1-5) -- (m-2-5);
draw[toarrow] (b) edge[bend right] (b2) edge[bend left] (co);
draw[toarrow] (b2) to[bend right] (cm);
draw[toarrow] (cm) to[bend right] (db);
draw[toarrow] (co) to[bend right] (cm);
draw[toarrow] (cp) to[bend right] (c2);
draw[toarrow] (c) edge[bend right] (c3) edge[bend left] (d);
draw[backarrow] (d2) edge[bend left] (c2) edge[bend right=20] (c3) edge[bend left] (d);
draw[backarrow] (e2) edge[bend left] (d2) edge[bend left] (e);
draw[toarrow] (d) edge[bend left] (e);
endtikzpicture
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%2f484877%2ftypsetting-diagram-chases-with-tikz%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    3














    We clearly can't avoid difficulties and complexity when dealing with such a complicated graph when using any kinds of tool, but by using matrices it has saved a lot of work.



    documentclass[tikz]standalone
    usetikzlibrarymatrix,positioning,arrows.meta
    usepackagemathptmx
    tikzsettoarrow/.style=[scale=0.7]->[scale=0.7],
    backarrow/.style=<[scale=0.7]-[scale=0.7]
    begindocument
    begintikzpicture
    matrix[matrix of math nodes,row sep=2cm,column sep=2cm] (m) %
    A & B & C & D & E\
    A' & B' & C' & D' & E'\;
    path (m-1-2) node[above left=1.5ex and 1.5ex] (b) $b$
    (m-1-3) node[above left=1.5ex and 1.5ex] (c) $c$
    (m-1-4) node[above left=1.5ex and 1.5ex] (d) $d$
    (m-1-5) node[above left=1.5ex and 1.5ex] (e) $e$
    (m-2-2) node[below left=1.5ex and 1.5ex] (b2) $b'$
    (m-2-3) node[below left=1.5ex and 1.5ex] (c2) $c'$
    (m-2-4) node[below left=1.5ex and 1.5ex] (d2) $d'$
    (m-2-5) node[below left=1.5ex and 1.5ex] (e2) $0$
    (m-2-3) node[above left=1.5ex and 1.5ex] (c3) $c''$
    (c) node[above left=1.5ex and -1.5ex] (cp) $overlinec+c$
    (c2) node[below=1.5ex] (cm) $c'-c''$
    (d2) node[below=1.5ex] (db) $0$
    (e.base east) node[above right=-.3333em and -1ex] $=0$
    (c.base west) node[above left=-.3333em and 1.5ex] (co) $overlinec$;
    % Delete the following part to see what happens
    foreach i [count=j from 2] in 1,2,3,4
    draw[dotted,->] (m-1-i) -- (m-2-i);
    draw[dotted,->] (m-1-i) -- (m-1-j);
    draw[dotted,->] (m-2-i) -- (m-2-j);

    draw[dotted,->] (m-1-5) -- (m-2-5);
    draw[toarrow] (b) edge[bend right] (b2) edge[bend left] (co);
    draw[toarrow] (b2) to[bend right] (cm);
    draw[toarrow] (cm) to[bend right] (db);
    draw[toarrow] (co) to[bend right] (cm);
    draw[toarrow] (cp) to[bend right] (c2);
    draw[toarrow] (c) edge[bend right] (c3) edge[bend left] (d);
    draw[backarrow] (d2) edge[bend left] (c2) edge[bend right=20] (c3) edge[bend left] (d);
    draw[backarrow] (e2) edge[bend left] (d2) edge[bend left] (e);
    draw[toarrow] (d) edge[bend left] (e);
    endtikzpicture
    enddocument


    enter image description here






    share|improve this answer





























      3














      We clearly can't avoid difficulties and complexity when dealing with such a complicated graph when using any kinds of tool, but by using matrices it has saved a lot of work.



      documentclass[tikz]standalone
      usetikzlibrarymatrix,positioning,arrows.meta
      usepackagemathptmx
      tikzsettoarrow/.style=[scale=0.7]->[scale=0.7],
      backarrow/.style=<[scale=0.7]-[scale=0.7]
      begindocument
      begintikzpicture
      matrix[matrix of math nodes,row sep=2cm,column sep=2cm] (m) %
      A & B & C & D & E\
      A' & B' & C' & D' & E'\;
      path (m-1-2) node[above left=1.5ex and 1.5ex] (b) $b$
      (m-1-3) node[above left=1.5ex and 1.5ex] (c) $c$
      (m-1-4) node[above left=1.5ex and 1.5ex] (d) $d$
      (m-1-5) node[above left=1.5ex and 1.5ex] (e) $e$
      (m-2-2) node[below left=1.5ex and 1.5ex] (b2) $b'$
      (m-2-3) node[below left=1.5ex and 1.5ex] (c2) $c'$
      (m-2-4) node[below left=1.5ex and 1.5ex] (d2) $d'$
      (m-2-5) node[below left=1.5ex and 1.5ex] (e2) $0$
      (m-2-3) node[above left=1.5ex and 1.5ex] (c3) $c''$
      (c) node[above left=1.5ex and -1.5ex] (cp) $overlinec+c$
      (c2) node[below=1.5ex] (cm) $c'-c''$
      (d2) node[below=1.5ex] (db) $0$
      (e.base east) node[above right=-.3333em and -1ex] $=0$
      (c.base west) node[above left=-.3333em and 1.5ex] (co) $overlinec$;
      % Delete the following part to see what happens
      foreach i [count=j from 2] in 1,2,3,4
      draw[dotted,->] (m-1-i) -- (m-2-i);
      draw[dotted,->] (m-1-i) -- (m-1-j);
      draw[dotted,->] (m-2-i) -- (m-2-j);

      draw[dotted,->] (m-1-5) -- (m-2-5);
      draw[toarrow] (b) edge[bend right] (b2) edge[bend left] (co);
      draw[toarrow] (b2) to[bend right] (cm);
      draw[toarrow] (cm) to[bend right] (db);
      draw[toarrow] (co) to[bend right] (cm);
      draw[toarrow] (cp) to[bend right] (c2);
      draw[toarrow] (c) edge[bend right] (c3) edge[bend left] (d);
      draw[backarrow] (d2) edge[bend left] (c2) edge[bend right=20] (c3) edge[bend left] (d);
      draw[backarrow] (e2) edge[bend left] (d2) edge[bend left] (e);
      draw[toarrow] (d) edge[bend left] (e);
      endtikzpicture
      enddocument


      enter image description here






      share|improve this answer



























        3












        3








        3







        We clearly can't avoid difficulties and complexity when dealing with such a complicated graph when using any kinds of tool, but by using matrices it has saved a lot of work.



        documentclass[tikz]standalone
        usetikzlibrarymatrix,positioning,arrows.meta
        usepackagemathptmx
        tikzsettoarrow/.style=[scale=0.7]->[scale=0.7],
        backarrow/.style=<[scale=0.7]-[scale=0.7]
        begindocument
        begintikzpicture
        matrix[matrix of math nodes,row sep=2cm,column sep=2cm] (m) %
        A & B & C & D & E\
        A' & B' & C' & D' & E'\;
        path (m-1-2) node[above left=1.5ex and 1.5ex] (b) $b$
        (m-1-3) node[above left=1.5ex and 1.5ex] (c) $c$
        (m-1-4) node[above left=1.5ex and 1.5ex] (d) $d$
        (m-1-5) node[above left=1.5ex and 1.5ex] (e) $e$
        (m-2-2) node[below left=1.5ex and 1.5ex] (b2) $b'$
        (m-2-3) node[below left=1.5ex and 1.5ex] (c2) $c'$
        (m-2-4) node[below left=1.5ex and 1.5ex] (d2) $d'$
        (m-2-5) node[below left=1.5ex and 1.5ex] (e2) $0$
        (m-2-3) node[above left=1.5ex and 1.5ex] (c3) $c''$
        (c) node[above left=1.5ex and -1.5ex] (cp) $overlinec+c$
        (c2) node[below=1.5ex] (cm) $c'-c''$
        (d2) node[below=1.5ex] (db) $0$
        (e.base east) node[above right=-.3333em and -1ex] $=0$
        (c.base west) node[above left=-.3333em and 1.5ex] (co) $overlinec$;
        % Delete the following part to see what happens
        foreach i [count=j from 2] in 1,2,3,4
        draw[dotted,->] (m-1-i) -- (m-2-i);
        draw[dotted,->] (m-1-i) -- (m-1-j);
        draw[dotted,->] (m-2-i) -- (m-2-j);

        draw[dotted,->] (m-1-5) -- (m-2-5);
        draw[toarrow] (b) edge[bend right] (b2) edge[bend left] (co);
        draw[toarrow] (b2) to[bend right] (cm);
        draw[toarrow] (cm) to[bend right] (db);
        draw[toarrow] (co) to[bend right] (cm);
        draw[toarrow] (cp) to[bend right] (c2);
        draw[toarrow] (c) edge[bend right] (c3) edge[bend left] (d);
        draw[backarrow] (d2) edge[bend left] (c2) edge[bend right=20] (c3) edge[bend left] (d);
        draw[backarrow] (e2) edge[bend left] (d2) edge[bend left] (e);
        draw[toarrow] (d) edge[bend left] (e);
        endtikzpicture
        enddocument


        enter image description here






        share|improve this answer















        We clearly can't avoid difficulties and complexity when dealing with such a complicated graph when using any kinds of tool, but by using matrices it has saved a lot of work.



        documentclass[tikz]standalone
        usetikzlibrarymatrix,positioning,arrows.meta
        usepackagemathptmx
        tikzsettoarrow/.style=[scale=0.7]->[scale=0.7],
        backarrow/.style=<[scale=0.7]-[scale=0.7]
        begindocument
        begintikzpicture
        matrix[matrix of math nodes,row sep=2cm,column sep=2cm] (m) %
        A & B & C & D & E\
        A' & B' & C' & D' & E'\;
        path (m-1-2) node[above left=1.5ex and 1.5ex] (b) $b$
        (m-1-3) node[above left=1.5ex and 1.5ex] (c) $c$
        (m-1-4) node[above left=1.5ex and 1.5ex] (d) $d$
        (m-1-5) node[above left=1.5ex and 1.5ex] (e) $e$
        (m-2-2) node[below left=1.5ex and 1.5ex] (b2) $b'$
        (m-2-3) node[below left=1.5ex and 1.5ex] (c2) $c'$
        (m-2-4) node[below left=1.5ex and 1.5ex] (d2) $d'$
        (m-2-5) node[below left=1.5ex and 1.5ex] (e2) $0$
        (m-2-3) node[above left=1.5ex and 1.5ex] (c3) $c''$
        (c) node[above left=1.5ex and -1.5ex] (cp) $overlinec+c$
        (c2) node[below=1.5ex] (cm) $c'-c''$
        (d2) node[below=1.5ex] (db) $0$
        (e.base east) node[above right=-.3333em and -1ex] $=0$
        (c.base west) node[above left=-.3333em and 1.5ex] (co) $overlinec$;
        % Delete the following part to see what happens
        foreach i [count=j from 2] in 1,2,3,4
        draw[dotted,->] (m-1-i) -- (m-2-i);
        draw[dotted,->] (m-1-i) -- (m-1-j);
        draw[dotted,->] (m-2-i) -- (m-2-j);

        draw[dotted,->] (m-1-5) -- (m-2-5);
        draw[toarrow] (b) edge[bend right] (b2) edge[bend left] (co);
        draw[toarrow] (b2) to[bend right] (cm);
        draw[toarrow] (cm) to[bend right] (db);
        draw[toarrow] (co) to[bend right] (cm);
        draw[toarrow] (cp) to[bend right] (c2);
        draw[toarrow] (c) edge[bend right] (c3) edge[bend left] (d);
        draw[backarrow] (d2) edge[bend left] (c2) edge[bend right=20] (c3) edge[bend left] (d);
        draw[backarrow] (e2) edge[bend left] (d2) edge[bend left] (e);
        draw[toarrow] (d) edge[bend left] (e);
        endtikzpicture
        enddocument


        enter image description here







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited 1 hour ago

























        answered 1 hour ago









        JouleVJouleV

        13.5k22664




        13.5k22664



























            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%2f484877%2ftypsetting-diagram-chases-with-tikz%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

            Are there any AGPL-style licences that require source code modifications to be public? Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Force derivative works to be publicAre there any GPL like licenses for Apple App Store?Do you violate the GPL if you provide source code that cannot be compiled?GPL - is it distribution to use libraries in an appliance loaned to customers?Distributing App for free which uses GPL'ed codeModifications of server software under GPL, with web/CLI interfaceDoes using an AGPLv3-licensed library prevent me from dual-licensing my own source code?Can I publish only select code under GPLv3 from a private project?Is there published precedent regarding the scope of covered work that uses AGPL software?If MIT licensed code links to GPL licensed code what should be the license of the resulting binary program?If I use a public API endpoint that has its source code licensed under AGPL in my app, do I need to disclose my source?

            2013 GY136 Descoberta | Órbita | Referências Menu de navegação«List Of Centaurs and Scattered-Disk Objects»«List of Known Trans-Neptunian Objects»

            Button changing it's text & action. Good or terrible? The 2019 Stack Overflow Developer Survey Results Are Inchanging text on user mouseoverShould certain functions be “hard to find” for powerusers to discover?Custom liking function - do I need user login?Using different checkbox style for different checkbox behaviorBest Practices: Save and Exit in Software UIInteraction with remote validated formMore efficient UI to progress the user through a complicated process?Designing a popup notice for a gameShould bulk-editing functions be hidden until a table row is selected, or is there a better solution?Is it bad practice to disable (replace) the context menu?