Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

26 řádky
1.3KB

  1. \documentclass{standalone}
  2. \usepackage{tikz}
  3. \usetikzlibrary {arrows.meta,graphs,graphdrawing} \usegdlibrary {layered, trees}
  4. \tikzset{nodes={text height=.7em, text width=2.8cm, align=center,
  5. draw=black!50, thick, font=\footnotesize, fill=white},
  6. >={Stealth[round,sep]}, rounded corners, semithick}
  7. \begin{document}
  8. \begin{tikzpicture}
  9. \draw[fill=lightgray] (-1.7,0.5) rectangle (5, -2.8);
  10. \draw[fill=lightgray] (-1.7,-3) rectangle (5, -5.5);
  11. \draw (3.4,0) node[draw=none, fill=none] (wf) {Waterfall};
  12. \graph [layered layout, level distance=1.2cm, sibling sep=.5em, sibling distance=3.4cm, component order=by first specified node] {
  13. pd [as=Problem Description,grow=down] -> "Specifications" -> "Initial Design" -> "Feature Separation" -> {Rapid Development ->[bend right] Variable Approach};
  14. {Rapid Development <-[bend left] Variable Approach};
  15. {Rapid Interation Design Method[draw=none, fill=none] ->[draw=none] Variable Approach};
  16. { [same layer] Feature Separation, Rapid Interation Design Method};
  17. %-> tree[fill=none, minimum height=3cm, minimum width=6cm] // [tree layout] {Rapid Development -> Variable Approach};
  18. { [same layer] Variable Approach, Rapid Development };
  19. };
  20. \end{tikzpicture}
  21. \end{document}