Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.91 KB | None | 0 0
  1. \documentclass[44pt]{article}
  2. \usepackage[T2A]{fontenc}
  3. \usepackage[utf8]{inputenc}
  4. \usepackage[russian]{babel}
  5. \usepackage{hyphenat}
  6. \usepackage{tikz}
  7. \usetikzlibrary{decorations.pathmorphing}
  8. \usetikzlibrary{intersections}
  9. \begin{document}
  10.  
  11. \begin{tikzpicture}
  12.  
  13. \begin{tikzpicture}
  14.  
  15. \draw[step=0.5, color=gray,opacity=0.4] (-2,-2) grid (10,10);
  16.  
  17. \coordinate (a) at (0,0);
  18. \draw[fill=red]  (0,0) circle (0.1);
  19. \coordinate (b) at (0,4);
  20. \draw[fill=red]  (0,4) circle (0.1);
  21. \coordinate (c) at (4,4);
  22. \draw[fill=red]  (4,4) circle (0.1);
  23. \coordinate (d) at (4,0);
  24. \draw[fill=red]  (4,0) circle (0.1);
  25. \draw (a)--(b)--(c)--(d)--(a);
  26.  
  27. \coordinate (a) at (5,5);
  28. \draw[fill=red]  (5,5) circle (0.1);
  29. \coordinate (b) at (7,8);
  30. \draw[fill=red]  (7,8) circle (0.1);
  31. \coordinate (c) at (9,5);
  32. \draw[fill=red]  (9,5) circle (0.1);
  33. \draw (a)--(b)--(c)--(a);
  34. \end{tikzpicture}
  35. \end{tikzpicture}
  36. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement