Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

48 rindas
1.7KB

  1. \documentclass{standalone}
  2. \usepackage{tikz}
  3. \usepackage{siltex}
  4. \usetikzlibrary {arrows.meta,positioning,calc,math}
  5. \tikzset{nodes={text height=.7em, text width=2.7cm, align=center,
  6. draw=black!50, thick, font=\footnotesize, fill=white},
  7. >={Stealth[round,sep]}, rounded corners, semithick}
  8. \pgfdeclarelayer{bg}
  9. \pgfsetlayers{bg,main}
  10. \begin{document}
  11. \begin{tikzpicture}[on grid,y=1.2cm,x=2.9cm]
  12. \def\rectoffset{-1.2mm,2.5mm};
  13. \def\rectoffsetleft{-2.90cm,0cm};
  14. \def\textoffset{2.9cm,0cm};
  15. \def\phasegroup(#1,#2,#3){%
  16. \begin{scope}[nodes={draw=none, fill=none,text height={}}]
  17. \coordinate (a) at ($(#1.north west)+(\rectoffset)$){};
  18. \coordinate (b) at ($(#2.south east)-(\rectoffset)-(\rectoffsetleft)$){};
  19. \draw[fill=lightgray] (a) rectangle (b);
  20. \node[anchor=center] at ($(#1)+(\textoffset)$) {#3};
  21. \end{scope}
  22. };
  23. \node (pd) {Problem Description};
  24. \node (sp)[below=1 of pd] {Requirements};
  25. \node (id)[below=1 of sp] {Initial Design};
  26. \node (fs)[below=1 of id] {Feature Definition};
  27. \node (tp)[below=1 of fs] {Test Protocol};
  28. \node (ss)[below=1 of tp] {Feature Selection};
  29. \node (a1)[below=0.8 of ss,draw=none, fill=none] {};
  30. \node (rd)[below=0.8 of a1] {Rapid Development};
  31. \node (va)[right=1 of a1] {Variable Approach};
  32. \path[->] (pd) edge (sp)
  33. (sp) edge (id)
  34. (id) edge (fs)
  35. (fs) edge (tp)
  36. (tp) edge (ss)
  37. (ss) edge (rd)
  38. (rd.east) edge[bend right] (va)
  39. (va) edge[bend right] (ss.east);
  40. \begin{pgfonlayer}{bg}
  41. \phasegroup(pd,id,Systems Engineering);
  42. \phasegroup(fs,rd,Rapid Iterative Design Method);
  43. \end{pgfonlayer}
  44. \end{tikzpicture}
  45. \end{document}