Guest User

Untitled

a guest
Jan 18th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{tikz}
  3. usetikzlibrary{positioning}
  4.  
  5. begin{document}
  6. begin{tikzpicture}
  7.  
  8. node [draw] (a) {a};
  9. node [draw, right=of a] (b) {b};
  10. node [draw, right=of b] (c) {c};
  11. node [draw, below=of c] (f) {f};
  12.  
  13. draw (a) to[out=0,in=180] (f);
  14.  
  15. end{tikzpicture}
  16. end{document}
  17.  
  18. documentclass{article}
  19. usepackage{tikz}
  20. usetikzlibrary{positioning}
  21.  
  22. begin{document}
  23. begin{tikzpicture}
  24.  
  25. node [draw] (a) {a};
  26. node [draw, right=of a] (b) {b};
  27. node [draw, right=of b] (c) {c};
  28. node [draw, below=of c] (f) {f};
  29.  
  30. draw (a) ..controls (b) and ({a |- f}).. (f);
  31.  
  32. end{tikzpicture}
  33. end{document}
Add Comment
Please, Sign In to add comment