Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. documentclass{standalone}
  2.  
  3. usepackage{tikz}
  4. usetikzlibrary{shapes, calc, fit, arrows.meta, arrows, patterns,
  5. positioning, intersections, 3d, matrix}
  6. usetikzlibrary{decorations.pathmorphing, decorations.shapes}
  7.  
  8. begin{document}
  9.  
  10. begin{tikzpicture}
  11.  
  12. draw (0,0) ellipse (2 and 1);
  13. draw (0,0) ellipse (3 and 2);
  14. draw (0,0) ellipse (4 and 3);
  15. draw (0,1) -- (0,3);
  16. draw (0,-1) -- (0,-3);
  17. draw (2,0) -- (4,0);
  18. draw (-2,0) -- (-4,0);
  19. draw (1.36,0.75) -- (3.0,2);
  20. draw (-1.36,0.75) -- (-3.0,2);
  21. draw (1.36,-0.75) -- (3.0,-2);
  22. draw (-1.36,-0.75) -- (-3.0,-2);
  23. node at (1,1.4){Here};
  24.  
  25. end{tikzpicture}
  26.  
  27. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement