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

17 строки
605B

  1. \documentclass{standalone}
  2. \usepackage{tikz}
  3. \usetikzlibrary {arrows.meta,graphs,graphdrawing} \usegdlibrary {layered}
  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. \graph [layered layout, level distance=1.2cm, sibling sep=.5em, sibling distance=1.5cm, sweep crossing minimization] {
  10. pd [as=Problem Description] -> "Specifications" -> "Initial Design" -> "Implementation" -> "Testing";
  11. };
  12. \end{tikzpicture}
  13. \end{document}