您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

22 行
751B

  1. %&tex
  2. \documentclass{standalone}
  3. \usepackage{tikz}
  4. \usepackage{siltex}
  5. \usetikzlibrary {arrows.meta,positioning}
  6. \tikzset{nodes={text height=.7em, text width=2.5cm, align=center,
  7. draw=black!50, thick, font=\footnotesize},
  8. >={Stealth[round,sep]}, rounded corners, semithick}
  9. \begin{document}
  10. \begin{tikzpicture}[on grid,y=2.2cm,x=5.7cm]
  11. \node (re) {Requirement};
  12. \node (fu)[right=1 of re] {Function};
  13. \node (co)[above=1 of fu] {Component};
  14. \begin{scope}[nodes={draw=none, auto, fill=none, midway,text width={},text height={}}]
  15. \path[->] (re) edge node[below] {Specifies} (fu)
  16. (co) edge node {Performs} (fu)
  17. (re) edge node {Specifies} (co);
  18. \end{scope}
  19. \end{tikzpicture}
  20. \end{document}