Guest User

Untitled

a guest
Feb 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. usepackage{tikz}
  4. usetikzlibrary{svg.path}
  5.  
  6. begin{document}
  7. % Original
  8. begin{tikzpicture}
  9. draw svg "M 256 8 C 119 8 8 119 8 256 s 111 248 248 248 s 248 -111 248 -248 S 393 8 256 8 z";
  10. end{tikzpicture}
  11. % Mix of relative
  12. begin{tikzpicture}
  13. draw svg "M 256 8 C 119 8 8 119 8 256 s 111 248 248 248 S 504 393 504 256 S 393 8 256 8 z";
  14. end{tikzpicture}
  15. % Mix of relative
  16. begin{tikzpicture}
  17. draw svg "M 256 8 C 119 8 8 119 8 256 S 119 504 256 504 s 248 -111 248 -248 S 393 8 256 8 z";
  18. end{tikzpicture}
  19. % Full absolute
  20. begin{tikzpicture}
  21. draw svg "M256 8 C 119 8 8 119 8 256 S 119 504 256 504 S 504 393 504 256 S 393 8 256 8 z";
  22. end{tikzpicture}
  23. end{document}
Add Comment
Please, Sign In to add comment