You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 line
687B

  1. \documentclass{standalone}
  2. \usepackage{tikz}
  3. \usepackage{siltex}
  4. \usetikzlibrary {arrows.meta,positioning}
  5. % Compliant PDF
  6. \usepackage[a-3u]{pdfx}
  7. \begin{document}
  8. \begin{tikzpicture}[on grid,y=1.5cm,x=2.24cm, nodes={text height=.7em, text width=1.8cm, align=center,
  9. draw=black!20, thick, fill=white, font=\footnotesize},
  10. >={Stealth[round,sep]}, rounded corners, semithick]
  11. \node (a) at (0,0) {Mission};
  12. \node (b) at (0,-1) {Task};
  13. \node (c) at (0,-2) {Skill};
  14. \node (d) at (0,-3) {Service};
  15. \node (e) at (0,-4) {Component};
  16. \path[->]
  17. (a) edge (b)
  18. (b) edge (c)
  19. (c) edge (d);
  20. \path[->,dashed]
  21. (d) edge (e);
  22. \end{tikzpicture}
  23. \end{document}