Guest User

Untitled

a guest
Dec 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{pgfplots}
  3. pgfplotsset{compat=1.15}
  4.  
  5. begin{document}
  6.  
  7. begin{figure}[ht]
  8.  
  9. centering
  10.  
  11. begin{tikzpicture}[scale=1.25,line width=1pt]
  12. begin{axis}[
  13. color= white,
  14. xmin=-28.9,
  15. xmax=28.9,
  16. ymin=-28.9,
  17. ymax=28.9,
  18. axis equal image,
  19. axis lines=middle,
  20. ]
  21.  
  22. foreach x in {-24,..., 24}
  23. {draw[thin, gray] (x,-24) -- (x,24);}
  24.  
  25. draw[black, thin] (-24,-24) -- (-24,24) -- (24,24) -- (24, -24) --
  26. (-24,-24);
  27.  
  28. node[black, below] at (24,-24) {$(1,0)$};
  29.  
  30. node[black, below] at (-24,-24) {$(0,0)$};
  31.  
  32. node[black, above] at (-24,24) {$(0,1)$};
  33.  
  34. node[black, above] at (24,24) {$(1,1)$};
  35.  
  36. end{axis}
  37. end{tikzpicture}
  38.  
  39. end{figure}
  40.  
  41. end{document}
Add Comment
Please, Sign In to add comment