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

22 行
664B

  1. \documentclass{standalone}
  2. \usepackage{tikz}
  3. \usepackage{siltex}
  4. \usetikzlibrary {arrows.meta,positioning}
  5. \tikzset{nodes={text height=.7em, text width=1.2cm, 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.5cm, x = 1.8cm]
  10. \node (a) {Feature A};
  11. \node (d) [right = 1 of a]{Feature D};
  12. \node (b) [below = 1 of a]{Feature B};
  13. \node (c) [below = 1 of d]{Feature C};
  14. \node (e) [below = 1 of c]{Feature E};
  15. \path[->] (a) edge (b)
  16. (a) edge (c)
  17. (c) edge (e);
  18. \end{tikzpicture}
  19. \end{document}