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.

22 lines
795B

  1. \documentclass{standalone}
  2. \usepackage{tikz}
  3. \usepackage{siltex}
  4. \usetikzlibrary {arrows.meta,positioning}
  5. \tikzset{nodes={text height=.7em, text width=2.8cm, align=center,
  6. draw=black!50, thick, font=\footnotesize, fill=white},
  7. >={Stealth[round,sep]}, rounded corners, semithick}
  8. \begin{document}
  9. \begin{tikzpicture}[y=0.8cm,x=3.2cm]
  10. \node (pp) {Path planning};
  11. \node (ip)[below=1 of pp] {Interpolation};
  12. \node (ik)[below=1 of ip] {Inverse Kinematics\\/Lookup Table};
  13. \node (sd)[below=1 of ik] {Stepper driver};
  14. \begin{scope}[nodes={right, draw=none, fill=none, midway,text width={}}]
  15. \path[->] (pp) edge node {$x,y$} (ip)
  16. (ip) edge node {$x,y$} (ik)
  17. (ik) edge node {$\phi,\psi$} (sd);
  18. \end{scope}
  19. \end{tikzpicture}
  20. \end{document}