Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. documentclass[tikz]{standalone}
  2. begin{document}
  3. begin{tikzpicture}[x=1.5cm]
  4. foreach i in {1,2} draw (i,-.2) -- (i,3.2);
  5. foreach i in {0,1,2,3} draw (0,i) -- (3,i);
  6. foreach x/y in {
  7. .5/0,
  8. .4/2,
  9. .6/2,
  10. .5/2.5
  11. } fill (x,y) circle (2pt);
  12. end{tikzpicture}
  13. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement