Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. usepackage{tikz}
  4. usepackage{amssymb}
  5. usepackage{xifthen}
  6.  
  7. begin{document}
  8.  
  9. begin{figure}
  10.  
  11. begin{tikzpicture}[scale=1]
  12.  
  13. foreach x in {0,...,11}
  14. foreach y in {0,...,14}
  15. {
  16. draw (x,y) circle(2pt);
  17. }
  18.  
  19. foreach x in {1,...,3}
  20. foreach y in {1,...,11}
  21. {
  22. fill (x,y) circle(2pt);
  23. }
  24.  
  25. foreach x in {8,...,10}
  26. foreach y in {1,...,11}
  27. {
  28. fill (x,y) circle(2pt);
  29. }
  30.  
  31. foreach x in {4,...,8}
  32. foreach y in {4,...,6}
  33. {
  34. fill (x,y) circle(2pt);
  35. }
  36.  
  37. foreach x in {4,...,8}
  38. foreach y in {9,...,11}
  39. {
  40. fill (x,y) circle(2pt);
  41. }
  42.  
  43. end{tikzpicture}
  44. end{figure}
  45. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement