Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

34 строки
1.3KB

  1. \documentclass{standalone}
  2. \usepackage{tikz}
  3. \usepackage{siltex}
  4. \usetikzlibrary {arrows.meta,positioning}
  5. \tikzset{nodes={text height=.7em, text width=2.8cm, align=center,
  6. draw=black!50, thick, font=\footnotesize, fill=white},
  7. >={Stealth[round,sep]}, rounded corners, semithick}
  8. \begin{document}
  9. \begin{tikzpicture}[on grid,y=1.2cm,x=3.2cm]
  10. \draw[fill=lightgray] (-1.7cm, 1.5cm) rectangle (1.7cm, -5.3cm);
  11. \draw[fill=lightgray] (-1.7cm,-5.5cm) rectangle (5cm, -9.2cm);
  12. \node (pd) {Problem Description};
  13. \node (sp)[below=1 of pd] {Specifications};
  14. \node (id)[below=1 of sp] {Initial Design};
  15. \node (fs)[below=1 of id] {Feature Definition};
  16. \node (tp)[below=1 of fs] {Test Protocol};
  17. \node (ss)[below=1 of tp] {Feature Selection};
  18. \node (a1)[below=0.8 of ss,draw=none, fill=none] {};
  19. \node (rd)[below=0.8 of a1] {Rapid Development};
  20. \node (va)[right=1 of a1] {Variable Approach};
  21. \node (pp)[above=0.8 of pd,draw=none,fill=none] {Preparation Phase};
  22. \node (dc)[below=1.6 of va,draw=none,fill=none] {Development Cycle};
  23. \path[->] (pd) edge (sp)
  24. (sp) edge (id)
  25. (id) edge (fs)
  26. (fs) edge (tp)
  27. (tp) edge (ss)
  28. (ss) edge (rd)
  29. (rd.east) edge[bend right] (va)
  30. (va) edge[bend right] (ss.east);
  31. \end{tikzpicture}
  32. \end{document}