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.

20 lines
632B

  1. %&tex
  2. \documentclass{standalone}
  3. \usepackage{tikz}
  4. \usetikzlibrary {quotes,arrows.meta,graphs,graphdrawing} \usegdlibrary {layered}
  5. \tikzset{nodes={text height=.7em, text width=2.7cm, align=center,
  6. draw=black!20, thick, fill=white, font=\footnotesize},
  7. >={Stealth[round,sep]}, rounded corners, semithick}
  8. \begin{document}
  9. \begin{tikzpicture}
  10. \graph [layered layout, level distance=1.2cm, sibling sep=.5em, sibling distance=1.5cm, sweep crossing minimization] {
  11. {"Design Method", "System Engineering"} -> "Design Plan";
  12. {"Evaluation Plan", "Design Plan", "Subject of design"} -> "Case Study";
  13. };
  14. \end{tikzpicture}
  15. \end{document}