Work Breakdown with TikzTikZ: Cropping the Bounding BoxTop-align text in a TikZ node of given size for single- and multiline caseDecorate path with just a colored thick lineWork breakdown structure (WBS) TikZHow to define the default vertical distance between nodes?TikZ scaling graphic and adjust node position and keep font sizetrapezium, how to calculate angles?Input/Output Nodes - Specification and Description LanguageAdjusting edge alignment and positioning of fitted nodetikz and pgfdeclareshape why the text is not at the center anchor?

declaring a variable twice in IIFE

Book about a traveler who helps planets in need

Validation accuracy vs Testing accuracy

The use of multiple foreign keys on same column in SQL Server

How to get the available space of $HOME as a variable in shell scripting?

N.B. ligature in Latex

Why CLRS example on residual networks does not follows its formula?

How is it possible for user to changed after storage was encrypted? (on OS X, Android)

Why has Russell's definition of numbers using equivalence classes been finally abandoned? ( If it has actually been abandoned).

How to report a triplet of septets in NMR tabulation?

Set-theoretical foundations of Mathematics with only bounded quantifiers

How do we improve the relationship with a client software team that performs poorly and is becoming less collaborative?

Is it possible to do 50 km distance without any previous training?

Email Account under attack (really) - anything I can do?

A function which translates a sentence to title-case

GPS Rollover on Android Smartphones

What defenses are there against being summoned by the Gate spell?

How do I create uniquely male characters?

Why is an old chain unsafe?

Continuity at a point in terms of closure

Why is "Reports" in sentence down without "The"

How is it possible to have an ability score that is less than 3?

What do you call something that goes against the spirit of the law, but is legal when interpreting the law to the letter?

"which" command doesn't work / path of Safari?



Work Breakdown with Tikz


TikZ: Cropping the Bounding BoxTop-align text in a TikZ node of given size for single- and multiline caseDecorate path with just a colored thick lineWork breakdown structure (WBS) TikZHow to define the default vertical distance between nodes?TikZ scaling graphic and adjust node position and keep font sizetrapezium, how to calculate angles?Input/Output Nodes - Specification and Description LanguageAdjusting edge alignment and positioning of fitted nodetikz and pgfdeclareshape why the text is not at the center anchor?













2















Im trying to create a Work Breakdown structure with tikz. I would like to have Desired structure



Instead I have the following:Actual Outcome



Here's my code:



documentclass[tikz,border=10pt]standaloneusepackagetikz
usetikzlibraryshadows,arrows,positioning
usepackagecolor,soul %For highlighting
% Define the layers to draw the diagram
pgfdeclarelayerbackground
pgfdeclarelayerforeground
pgfsetlayersbackground,main,foreground

% Define block styles
tikzstylemateria=[draw, text width=6.0em, text centered,
minimum height=1.5em]
tikzstyleetape = [materia, text width=12em, minimum width=10em,
minimum height=3em, rounded corners]
tikzstyletexto = [above, text width=6em, text centered]
tikzstylelinepart = [draw, thick, color=black!30, -latex', dashed]
tikzstyleline = [draw, thick, color=black!30, -latex']
tikzstyleur=[draw, text centered, minimum height=0.01em]

% Define distances for bordering
newcommandblockdist1.3
newcommandedgedist1.5

newcommandetape[2]node (p#1) [etape]
#2

newcommandtransreceptor[3]%
path [linepart] (#1.east) -- node [above]
scriptsize #2 (#3);

begindocument
begintikzpicture[scale=0.7,transform shape]

% Draw diagram elements
path etape1textbfOperating Items;
path (p1.west)+(-5.0,0.0)etape2textbfNon-Operating Items;
path (p2.south)+(0.0,-1.0)etape3textbfInterest;
path (p3.south)+(0.0,-1.0)etape4textbfProfits and Losses;
path (p4.south)+(0.0,-1.0)etape5textbfSubsidies;
path (p1.south)+(2.5,-1.0)etape6textbfDirect Operating Costs;
path (p1.south)+(-2.5,-1.0)etape7textbfIndirect Operating Costs;




% Draw arrows between elements

path [line] (p2.south) -- node [above] (p3);
path [line] (p3.south) -- node [above] (p4);
path [line] (p4.south) -- node [above] (p5);
path [line] (p1.south) -- +(0.0,-0.2) -- +(+2.5,-0.2)
-- node [above, midway] (p6);
path [line] (p1.south) -- +(0.0,-0.2) -- +(-2.5,-0.2)
-- node [above, midway] (p7);





endtikzpicture
enddocument

´´´









share|improve this question







New contributor




L Lewis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    2















    Im trying to create a Work Breakdown structure with tikz. I would like to have Desired structure



    Instead I have the following:Actual Outcome



    Here's my code:



    documentclass[tikz,border=10pt]standaloneusepackagetikz
    usetikzlibraryshadows,arrows,positioning
    usepackagecolor,soul %For highlighting
    % Define the layers to draw the diagram
    pgfdeclarelayerbackground
    pgfdeclarelayerforeground
    pgfsetlayersbackground,main,foreground

    % Define block styles
    tikzstylemateria=[draw, text width=6.0em, text centered,
    minimum height=1.5em]
    tikzstyleetape = [materia, text width=12em, minimum width=10em,
    minimum height=3em, rounded corners]
    tikzstyletexto = [above, text width=6em, text centered]
    tikzstylelinepart = [draw, thick, color=black!30, -latex', dashed]
    tikzstyleline = [draw, thick, color=black!30, -latex']
    tikzstyleur=[draw, text centered, minimum height=0.01em]

    % Define distances for bordering
    newcommandblockdist1.3
    newcommandedgedist1.5

    newcommandetape[2]node (p#1) [etape]
    #2

    newcommandtransreceptor[3]%
    path [linepart] (#1.east) -- node [above]
    scriptsize #2 (#3);

    begindocument
    begintikzpicture[scale=0.7,transform shape]

    % Draw diagram elements
    path etape1textbfOperating Items;
    path (p1.west)+(-5.0,0.0)etape2textbfNon-Operating Items;
    path (p2.south)+(0.0,-1.0)etape3textbfInterest;
    path (p3.south)+(0.0,-1.0)etape4textbfProfits and Losses;
    path (p4.south)+(0.0,-1.0)etape5textbfSubsidies;
    path (p1.south)+(2.5,-1.0)etape6textbfDirect Operating Costs;
    path (p1.south)+(-2.5,-1.0)etape7textbfIndirect Operating Costs;




    % Draw arrows between elements

    path [line] (p2.south) -- node [above] (p3);
    path [line] (p3.south) -- node [above] (p4);
    path [line] (p4.south) -- node [above] (p5);
    path [line] (p1.south) -- +(0.0,-0.2) -- +(+2.5,-0.2)
    -- node [above, midway] (p6);
    path [line] (p1.south) -- +(0.0,-0.2) -- +(-2.5,-0.2)
    -- node [above, midway] (p7);





    endtikzpicture
    enddocument

    ´´´









    share|improve this question







    New contributor




    L Lewis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      2












      2








      2








      Im trying to create a Work Breakdown structure with tikz. I would like to have Desired structure



      Instead I have the following:Actual Outcome



      Here's my code:



      documentclass[tikz,border=10pt]standaloneusepackagetikz
      usetikzlibraryshadows,arrows,positioning
      usepackagecolor,soul %For highlighting
      % Define the layers to draw the diagram
      pgfdeclarelayerbackground
      pgfdeclarelayerforeground
      pgfsetlayersbackground,main,foreground

      % Define block styles
      tikzstylemateria=[draw, text width=6.0em, text centered,
      minimum height=1.5em]
      tikzstyleetape = [materia, text width=12em, minimum width=10em,
      minimum height=3em, rounded corners]
      tikzstyletexto = [above, text width=6em, text centered]
      tikzstylelinepart = [draw, thick, color=black!30, -latex', dashed]
      tikzstyleline = [draw, thick, color=black!30, -latex']
      tikzstyleur=[draw, text centered, minimum height=0.01em]

      % Define distances for bordering
      newcommandblockdist1.3
      newcommandedgedist1.5

      newcommandetape[2]node (p#1) [etape]
      #2

      newcommandtransreceptor[3]%
      path [linepart] (#1.east) -- node [above]
      scriptsize #2 (#3);

      begindocument
      begintikzpicture[scale=0.7,transform shape]

      % Draw diagram elements
      path etape1textbfOperating Items;
      path (p1.west)+(-5.0,0.0)etape2textbfNon-Operating Items;
      path (p2.south)+(0.0,-1.0)etape3textbfInterest;
      path (p3.south)+(0.0,-1.0)etape4textbfProfits and Losses;
      path (p4.south)+(0.0,-1.0)etape5textbfSubsidies;
      path (p1.south)+(2.5,-1.0)etape6textbfDirect Operating Costs;
      path (p1.south)+(-2.5,-1.0)etape7textbfIndirect Operating Costs;




      % Draw arrows between elements

      path [line] (p2.south) -- node [above] (p3);
      path [line] (p3.south) -- node [above] (p4);
      path [line] (p4.south) -- node [above] (p5);
      path [line] (p1.south) -- +(0.0,-0.2) -- +(+2.5,-0.2)
      -- node [above, midway] (p6);
      path [line] (p1.south) -- +(0.0,-0.2) -- +(-2.5,-0.2)
      -- node [above, midway] (p7);





      endtikzpicture
      enddocument

      ´´´









      share|improve this question







      New contributor




      L Lewis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      Im trying to create a Work Breakdown structure with tikz. I would like to have Desired structure



      Instead I have the following:Actual Outcome



      Here's my code:



      documentclass[tikz,border=10pt]standaloneusepackagetikz
      usetikzlibraryshadows,arrows,positioning
      usepackagecolor,soul %For highlighting
      % Define the layers to draw the diagram
      pgfdeclarelayerbackground
      pgfdeclarelayerforeground
      pgfsetlayersbackground,main,foreground

      % Define block styles
      tikzstylemateria=[draw, text width=6.0em, text centered,
      minimum height=1.5em]
      tikzstyleetape = [materia, text width=12em, minimum width=10em,
      minimum height=3em, rounded corners]
      tikzstyletexto = [above, text width=6em, text centered]
      tikzstylelinepart = [draw, thick, color=black!30, -latex', dashed]
      tikzstyleline = [draw, thick, color=black!30, -latex']
      tikzstyleur=[draw, text centered, minimum height=0.01em]

      % Define distances for bordering
      newcommandblockdist1.3
      newcommandedgedist1.5

      newcommandetape[2]node (p#1) [etape]
      #2

      newcommandtransreceptor[3]%
      path [linepart] (#1.east) -- node [above]
      scriptsize #2 (#3);

      begindocument
      begintikzpicture[scale=0.7,transform shape]

      % Draw diagram elements
      path etape1textbfOperating Items;
      path (p1.west)+(-5.0,0.0)etape2textbfNon-Operating Items;
      path (p2.south)+(0.0,-1.0)etape3textbfInterest;
      path (p3.south)+(0.0,-1.0)etape4textbfProfits and Losses;
      path (p4.south)+(0.0,-1.0)etape5textbfSubsidies;
      path (p1.south)+(2.5,-1.0)etape6textbfDirect Operating Costs;
      path (p1.south)+(-2.5,-1.0)etape7textbfIndirect Operating Costs;




      % Draw arrows between elements

      path [line] (p2.south) -- node [above] (p3);
      path [line] (p3.south) -- node [above] (p4);
      path [line] (p4.south) -- node [above] (p5);
      path [line] (p1.south) -- +(0.0,-0.2) -- +(+2.5,-0.2)
      -- node [above, midway] (p6);
      path [line] (p1.south) -- +(0.0,-0.2) -- +(-2.5,-0.2)
      -- node [above, midway] (p7);





      endtikzpicture
      enddocument

      ´´´






      tikz-pgf tikz-trees






      share|improve this question







      New contributor




      L Lewis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      L Lewis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      L Lewis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 5 hours ago









      L LewisL Lewis

      132




      132




      New contributor




      L Lewis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      L Lewis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      L Lewis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          1 Answer
          1






          active

          oldest

          votes


















          3














          Welcome to TeX-SE! If your question is about a minimal damage modification of your code that produces something of that sort, here is a proposal:



          documentclass[tikz,border=10pt]standalone
          usetikzlibraryshadows,arrows,positioning
          usepackagecolor,soul %For highlighting
          % Define the layers to draw the diagram
          pgfdeclarelayerbackground
          pgfdeclarelayerforeground
          pgfsetlayersbackground,main,foreground

          % Define block styles
          tikzsetmateria/.style=draw, text width=6.0em, text centered,
          minimum height=1.5em,
          etape/.style=materia, text width=12em, minimum width=10em,
          minimum height=3em, rounded corners,
          texto/.style=above, text width=6em, text centered,
          linepart/.style=draw, thick, color=black!30, -latex', dashed,
          line/.style=draw, thick, color=black!30, -latex',
          ur/.style=draw, text centered, minimum height=0.01em

          % Define distances for bordering
          newcommandblockdist1.3
          newcommandedgedist1.5

          newcommandetape[2]node (p#1) [etape]
          #2

          newcommandtransreceptor[3]%
          path [linepart] (#1.east) -- node [above]
          scriptsize #2 (#3);

          begindocument
          begintikzpicture[scale=0.7,transform shape]

          % Draw diagram elements
          path etape1textbfOperating Items;
          path (p1.west)+(-6.5,0.0)etape2textbfNon-Operating Items;
          path (p2.south)+(1,-1.0)etape3textbfInterest;
          path (p3.south)+(0.0,-1.0)etape4textbfProfits and Losses;
          path (p4.south)+(0.0,-1.0)etape5textbfSubsidies;
          path (p1.south)+(2.5,-1.0)etape6textbfDirect Operating Costs;
          path (p1.south)+(-2.5,-1.0)etape7textbfIndirect Operating Costs;




          % Draw arrows between elements
          foreach X in 3,4,5
          - (pX.west);
          path [line] (p1.south) -- +(0.0,-0.2) -- +(+2.5,-0.2)
          -- node [above, midway] (p6);
          path [line] (p1.south) -- +(0.0,-0.2) -- +(-2.5,-0.2)
          -- node [above, midway] (p7);


          endtikzpicture
          enddocument


          enter image description here



          If you are asking about a cleaner code that achieves this output, the answer will be quite different. E.g. the following is already shorter and simpler IMHO.



          documentclass[tikz,border=10pt]standalone
          usetikzlibraryarrows,positioning

          % Define block styles
          tikzsetmateria/.style=draw, text width=6.0em, text centered,
          minimum height=1.5em,
          etape/.style=materia, text width=12em, minimum width=10em,
          minimum height=3em, rounded corners,
          line/.style=draw, thick, color=black!30, -latex'


          begindocument
          begintikzpicture[scale=0.7,transform shape]
          beginscope[nodes=etape,font=bfseries]
          node (p1) Operating Items;
          node[left=6.5cm of p1] (p2) Non-Operating Items;
          node[below=5mm of p2,xshift=8mm] (p3) Interest;
          node[below=5mm of p3] (p4) Profits and Losses;
          node[below=5mm of p4] (p5) Subsidies;
          node[below left=8mm and 1mm of p1.south] (p6) Direct Operating Costs;
          node[below right=8mm and 1mm of p1.south] (p7) Indirect Operating Costs;
          endscope
          % Draw arrows between elements
          foreach X in 3,4,5
          - (pX.west);
          foreach X in 6,7
          (pX.north);
          endtikzpicture
          enddocument





          share|improve this answer

























          • That was exactly what I was searching for

            – L Lewis
            5 hours ago











          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
          );



          );






          L Lewis is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f483701%2fwork-breakdown-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














          Welcome to TeX-SE! If your question is about a minimal damage modification of your code that produces something of that sort, here is a proposal:



          documentclass[tikz,border=10pt]standalone
          usetikzlibraryshadows,arrows,positioning
          usepackagecolor,soul %For highlighting
          % Define the layers to draw the diagram
          pgfdeclarelayerbackground
          pgfdeclarelayerforeground
          pgfsetlayersbackground,main,foreground

          % Define block styles
          tikzsetmateria/.style=draw, text width=6.0em, text centered,
          minimum height=1.5em,
          etape/.style=materia, text width=12em, minimum width=10em,
          minimum height=3em, rounded corners,
          texto/.style=above, text width=6em, text centered,
          linepart/.style=draw, thick, color=black!30, -latex', dashed,
          line/.style=draw, thick, color=black!30, -latex',
          ur/.style=draw, text centered, minimum height=0.01em

          % Define distances for bordering
          newcommandblockdist1.3
          newcommandedgedist1.5

          newcommandetape[2]node (p#1) [etape]
          #2

          newcommandtransreceptor[3]%
          path [linepart] (#1.east) -- node [above]
          scriptsize #2 (#3);

          begindocument
          begintikzpicture[scale=0.7,transform shape]

          % Draw diagram elements
          path etape1textbfOperating Items;
          path (p1.west)+(-6.5,0.0)etape2textbfNon-Operating Items;
          path (p2.south)+(1,-1.0)etape3textbfInterest;
          path (p3.south)+(0.0,-1.0)etape4textbfProfits and Losses;
          path (p4.south)+(0.0,-1.0)etape5textbfSubsidies;
          path (p1.south)+(2.5,-1.0)etape6textbfDirect Operating Costs;
          path (p1.south)+(-2.5,-1.0)etape7textbfIndirect Operating Costs;




          % Draw arrows between elements
          foreach X in 3,4,5
          - (pX.west);
          path [line] (p1.south) -- +(0.0,-0.2) -- +(+2.5,-0.2)
          -- node [above, midway] (p6);
          path [line] (p1.south) -- +(0.0,-0.2) -- +(-2.5,-0.2)
          -- node [above, midway] (p7);


          endtikzpicture
          enddocument


          enter image description here



          If you are asking about a cleaner code that achieves this output, the answer will be quite different. E.g. the following is already shorter and simpler IMHO.



          documentclass[tikz,border=10pt]standalone
          usetikzlibraryarrows,positioning

          % Define block styles
          tikzsetmateria/.style=draw, text width=6.0em, text centered,
          minimum height=1.5em,
          etape/.style=materia, text width=12em, minimum width=10em,
          minimum height=3em, rounded corners,
          line/.style=draw, thick, color=black!30, -latex'


          begindocument
          begintikzpicture[scale=0.7,transform shape]
          beginscope[nodes=etape,font=bfseries]
          node (p1) Operating Items;
          node[left=6.5cm of p1] (p2) Non-Operating Items;
          node[below=5mm of p2,xshift=8mm] (p3) Interest;
          node[below=5mm of p3] (p4) Profits and Losses;
          node[below=5mm of p4] (p5) Subsidies;
          node[below left=8mm and 1mm of p1.south] (p6) Direct Operating Costs;
          node[below right=8mm and 1mm of p1.south] (p7) Indirect Operating Costs;
          endscope
          % Draw arrows between elements
          foreach X in 3,4,5
          - (pX.west);
          foreach X in 6,7
          (pX.north);
          endtikzpicture
          enddocument





          share|improve this answer

























          • That was exactly what I was searching for

            – L Lewis
            5 hours ago















          3














          Welcome to TeX-SE! If your question is about a minimal damage modification of your code that produces something of that sort, here is a proposal:



          documentclass[tikz,border=10pt]standalone
          usetikzlibraryshadows,arrows,positioning
          usepackagecolor,soul %For highlighting
          % Define the layers to draw the diagram
          pgfdeclarelayerbackground
          pgfdeclarelayerforeground
          pgfsetlayersbackground,main,foreground

          % Define block styles
          tikzsetmateria/.style=draw, text width=6.0em, text centered,
          minimum height=1.5em,
          etape/.style=materia, text width=12em, minimum width=10em,
          minimum height=3em, rounded corners,
          texto/.style=above, text width=6em, text centered,
          linepart/.style=draw, thick, color=black!30, -latex', dashed,
          line/.style=draw, thick, color=black!30, -latex',
          ur/.style=draw, text centered, minimum height=0.01em

          % Define distances for bordering
          newcommandblockdist1.3
          newcommandedgedist1.5

          newcommandetape[2]node (p#1) [etape]
          #2

          newcommandtransreceptor[3]%
          path [linepart] (#1.east) -- node [above]
          scriptsize #2 (#3);

          begindocument
          begintikzpicture[scale=0.7,transform shape]

          % Draw diagram elements
          path etape1textbfOperating Items;
          path (p1.west)+(-6.5,0.0)etape2textbfNon-Operating Items;
          path (p2.south)+(1,-1.0)etape3textbfInterest;
          path (p3.south)+(0.0,-1.0)etape4textbfProfits and Losses;
          path (p4.south)+(0.0,-1.0)etape5textbfSubsidies;
          path (p1.south)+(2.5,-1.0)etape6textbfDirect Operating Costs;
          path (p1.south)+(-2.5,-1.0)etape7textbfIndirect Operating Costs;




          % Draw arrows between elements
          foreach X in 3,4,5
          - (pX.west);
          path [line] (p1.south) -- +(0.0,-0.2) -- +(+2.5,-0.2)
          -- node [above, midway] (p6);
          path [line] (p1.south) -- +(0.0,-0.2) -- +(-2.5,-0.2)
          -- node [above, midway] (p7);


          endtikzpicture
          enddocument


          enter image description here



          If you are asking about a cleaner code that achieves this output, the answer will be quite different. E.g. the following is already shorter and simpler IMHO.



          documentclass[tikz,border=10pt]standalone
          usetikzlibraryarrows,positioning

          % Define block styles
          tikzsetmateria/.style=draw, text width=6.0em, text centered,
          minimum height=1.5em,
          etape/.style=materia, text width=12em, minimum width=10em,
          minimum height=3em, rounded corners,
          line/.style=draw, thick, color=black!30, -latex'


          begindocument
          begintikzpicture[scale=0.7,transform shape]
          beginscope[nodes=etape,font=bfseries]
          node (p1) Operating Items;
          node[left=6.5cm of p1] (p2) Non-Operating Items;
          node[below=5mm of p2,xshift=8mm] (p3) Interest;
          node[below=5mm of p3] (p4) Profits and Losses;
          node[below=5mm of p4] (p5) Subsidies;
          node[below left=8mm and 1mm of p1.south] (p6) Direct Operating Costs;
          node[below right=8mm and 1mm of p1.south] (p7) Indirect Operating Costs;
          endscope
          % Draw arrows between elements
          foreach X in 3,4,5
          - (pX.west);
          foreach X in 6,7
          (pX.north);
          endtikzpicture
          enddocument





          share|improve this answer

























          • That was exactly what I was searching for

            – L Lewis
            5 hours ago













          3












          3








          3







          Welcome to TeX-SE! If your question is about a minimal damage modification of your code that produces something of that sort, here is a proposal:



          documentclass[tikz,border=10pt]standalone
          usetikzlibraryshadows,arrows,positioning
          usepackagecolor,soul %For highlighting
          % Define the layers to draw the diagram
          pgfdeclarelayerbackground
          pgfdeclarelayerforeground
          pgfsetlayersbackground,main,foreground

          % Define block styles
          tikzsetmateria/.style=draw, text width=6.0em, text centered,
          minimum height=1.5em,
          etape/.style=materia, text width=12em, minimum width=10em,
          minimum height=3em, rounded corners,
          texto/.style=above, text width=6em, text centered,
          linepart/.style=draw, thick, color=black!30, -latex', dashed,
          line/.style=draw, thick, color=black!30, -latex',
          ur/.style=draw, text centered, minimum height=0.01em

          % Define distances for bordering
          newcommandblockdist1.3
          newcommandedgedist1.5

          newcommandetape[2]node (p#1) [etape]
          #2

          newcommandtransreceptor[3]%
          path [linepart] (#1.east) -- node [above]
          scriptsize #2 (#3);

          begindocument
          begintikzpicture[scale=0.7,transform shape]

          % Draw diagram elements
          path etape1textbfOperating Items;
          path (p1.west)+(-6.5,0.0)etape2textbfNon-Operating Items;
          path (p2.south)+(1,-1.0)etape3textbfInterest;
          path (p3.south)+(0.0,-1.0)etape4textbfProfits and Losses;
          path (p4.south)+(0.0,-1.0)etape5textbfSubsidies;
          path (p1.south)+(2.5,-1.0)etape6textbfDirect Operating Costs;
          path (p1.south)+(-2.5,-1.0)etape7textbfIndirect Operating Costs;




          % Draw arrows between elements
          foreach X in 3,4,5
          - (pX.west);
          path [line] (p1.south) -- +(0.0,-0.2) -- +(+2.5,-0.2)
          -- node [above, midway] (p6);
          path [line] (p1.south) -- +(0.0,-0.2) -- +(-2.5,-0.2)
          -- node [above, midway] (p7);


          endtikzpicture
          enddocument


          enter image description here



          If you are asking about a cleaner code that achieves this output, the answer will be quite different. E.g. the following is already shorter and simpler IMHO.



          documentclass[tikz,border=10pt]standalone
          usetikzlibraryarrows,positioning

          % Define block styles
          tikzsetmateria/.style=draw, text width=6.0em, text centered,
          minimum height=1.5em,
          etape/.style=materia, text width=12em, minimum width=10em,
          minimum height=3em, rounded corners,
          line/.style=draw, thick, color=black!30, -latex'


          begindocument
          begintikzpicture[scale=0.7,transform shape]
          beginscope[nodes=etape,font=bfseries]
          node (p1) Operating Items;
          node[left=6.5cm of p1] (p2) Non-Operating Items;
          node[below=5mm of p2,xshift=8mm] (p3) Interest;
          node[below=5mm of p3] (p4) Profits and Losses;
          node[below=5mm of p4] (p5) Subsidies;
          node[below left=8mm and 1mm of p1.south] (p6) Direct Operating Costs;
          node[below right=8mm and 1mm of p1.south] (p7) Indirect Operating Costs;
          endscope
          % Draw arrows between elements
          foreach X in 3,4,5
          - (pX.west);
          foreach X in 6,7
          (pX.north);
          endtikzpicture
          enddocument





          share|improve this answer















          Welcome to TeX-SE! If your question is about a minimal damage modification of your code that produces something of that sort, here is a proposal:



          documentclass[tikz,border=10pt]standalone
          usetikzlibraryshadows,arrows,positioning
          usepackagecolor,soul %For highlighting
          % Define the layers to draw the diagram
          pgfdeclarelayerbackground
          pgfdeclarelayerforeground
          pgfsetlayersbackground,main,foreground

          % Define block styles
          tikzsetmateria/.style=draw, text width=6.0em, text centered,
          minimum height=1.5em,
          etape/.style=materia, text width=12em, minimum width=10em,
          minimum height=3em, rounded corners,
          texto/.style=above, text width=6em, text centered,
          linepart/.style=draw, thick, color=black!30, -latex', dashed,
          line/.style=draw, thick, color=black!30, -latex',
          ur/.style=draw, text centered, minimum height=0.01em

          % Define distances for bordering
          newcommandblockdist1.3
          newcommandedgedist1.5

          newcommandetape[2]node (p#1) [etape]
          #2

          newcommandtransreceptor[3]%
          path [linepart] (#1.east) -- node [above]
          scriptsize #2 (#3);

          begindocument
          begintikzpicture[scale=0.7,transform shape]

          % Draw diagram elements
          path etape1textbfOperating Items;
          path (p1.west)+(-6.5,0.0)etape2textbfNon-Operating Items;
          path (p2.south)+(1,-1.0)etape3textbfInterest;
          path (p3.south)+(0.0,-1.0)etape4textbfProfits and Losses;
          path (p4.south)+(0.0,-1.0)etape5textbfSubsidies;
          path (p1.south)+(2.5,-1.0)etape6textbfDirect Operating Costs;
          path (p1.south)+(-2.5,-1.0)etape7textbfIndirect Operating Costs;




          % Draw arrows between elements
          foreach X in 3,4,5
          - (pX.west);
          path [line] (p1.south) -- +(0.0,-0.2) -- +(+2.5,-0.2)
          -- node [above, midway] (p6);
          path [line] (p1.south) -- +(0.0,-0.2) -- +(-2.5,-0.2)
          -- node [above, midway] (p7);


          endtikzpicture
          enddocument


          enter image description here



          If you are asking about a cleaner code that achieves this output, the answer will be quite different. E.g. the following is already shorter and simpler IMHO.



          documentclass[tikz,border=10pt]standalone
          usetikzlibraryarrows,positioning

          % Define block styles
          tikzsetmateria/.style=draw, text width=6.0em, text centered,
          minimum height=1.5em,
          etape/.style=materia, text width=12em, minimum width=10em,
          minimum height=3em, rounded corners,
          line/.style=draw, thick, color=black!30, -latex'


          begindocument
          begintikzpicture[scale=0.7,transform shape]
          beginscope[nodes=etape,font=bfseries]
          node (p1) Operating Items;
          node[left=6.5cm of p1] (p2) Non-Operating Items;
          node[below=5mm of p2,xshift=8mm] (p3) Interest;
          node[below=5mm of p3] (p4) Profits and Losses;
          node[below=5mm of p4] (p5) Subsidies;
          node[below left=8mm and 1mm of p1.south] (p6) Direct Operating Costs;
          node[below right=8mm and 1mm of p1.south] (p7) Indirect Operating Costs;
          endscope
          % Draw arrows between elements
          foreach X in 3,4,5
          - (pX.west);
          foreach X in 6,7
          (pX.north);
          endtikzpicture
          enddocument






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 5 hours ago

























          answered 5 hours ago









          marmotmarmot

          116k5146277




          116k5146277












          • That was exactly what I was searching for

            – L Lewis
            5 hours ago

















          • That was exactly what I was searching for

            – L Lewis
            5 hours ago
















          That was exactly what I was searching for

          – L Lewis
          5 hours ago





          That was exactly what I was searching for

          – L Lewis
          5 hours ago










          L Lewis is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          L Lewis is a new contributor. Be nice, and check out our Code of Conduct.












          L Lewis is a new contributor. Be nice, and check out our Code of Conduct.











          L Lewis is a new contributor. Be nice, and check out our Code of Conduct.














          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%2f483701%2fwork-breakdown-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?