Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

39 Zeilen
1.2KB

  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. "Mission" -> "Task" -> "Skill" -> "Function" -> "Component";
  10. "Draw a tweet on a board" -> "Writing";
  11. "Writing" -> { "Write a char at position", "Hold Marker", "Move to position" };
  12. "Write a char at position" -> { "Move marker on board", "Lift Marker" };
  13. "Hold Marker" -> "Switch Tools";
  14. "Move marker on board" -> "SCARA";
  15. "Lift Marker" -> "End-effector";
  16. "Draw a tweet on a board" -> "Wiping";
  17. "Wiping" -> { "Wipe Area", "Hold Wiper", "Move to position" };
  18. "Hold Wiper" -> "Switch Tools";
  19. "Move Wiper on Board" -> SCARA;
  20. "Wipe Area" -> "Move Wiper on Board";
  21. "Move to position" -> "Move carriage" -> "Cable driven Carriage";
  22. "Switch Tools" -> {"End-effector", "SCARA"};
  23. };
  24. % \graph [layered layout] {
  25. % 1 -> 2 -> 3 -> 4;
  26. % };
  27. \end{tikzpicture}
  28. \end{document}