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.

25 lines
682B

  1. \documentclass{standalone}
  2. \usepackage{tikz}
  3. \usetikzlibrary {arrows.meta,graphs,graphdrawing} \usegdlibrary {layered}
  4. \begin{document}
  5. \begin{tikzpicture}[nodes={text height=.7em, text width=1.8cm, align=center,
  6. draw=black!20, thick, fill=white, font=\footnotesize},
  7. >={Stealth[round,sep]}, rounded corners, semithick]
  8. \graph [layered layout, level distance=1.5cm, sibling sep=.5em, sibling distance=1.5cm, sweep crossing minimization] {
  9. "Write a char at position" -> { "Move marker on board", "Lift Marker" };
  10. {"Lift Marker", "Move marker on board"} -> "SCARA";
  11. };
  12. % \graph [layered layout] {
  13. % 1 -> 2 -> 3 -> 4;
  14. % };
  15. \end{tikzpicture}
  16. \end{document}