25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

24 satır
704B

  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. % Compliant PDF
  9. \usepackage[a-3u]{pdfx}
  10. \begin{document}
  11. \begin{tikzpicture}[on grid, y = 1.5cm, x = 1.8cm]
  12. \node (a) {Feature A};
  13. \node (d) [right = 1 of a]{Feature D};
  14. \node (b) [below = 1 of a]{Feature B};
  15. \node (c) [below = 1 of d]{Feature C};
  16. \node (e) [below = 1 of c]{Feature E};
  17. \path[->] (a) edge (b)
  18. (a) edge (c)
  19. (c) edge (e);
  20. \end{tikzpicture}
  21. \end{document}