Guest User

Untitled

a guest
Jan 21st, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. documentclass[tikz]{standalone}
  2.  
  3. begin{document}
  4. begin{tikzpicture}[scale=10]
  5. draw (0,0)--(1.2,0)--(1.2,1.2)--(0,1.2)--cycle;
  6. draw[color=blue, very thick] (1,0)--(1,1);
  7. draw[color=blue, very thick] (1/2,0)--(1/2,1);
  8. draw[color=blue, very thick] (1/3,0)--(1/3,1);
  9. foreach x in {4, ..., 100}
  10. draw[color=blue, very thick] (1/x,0)--(1/x,1);
  11. draw[fill=blue] (1/100,0)--(1/100,1)--(0,1)--(0,0)--cycle;
  12. end{tikzpicture}
  13. end{document}
Add Comment
Please, Sign In to add comment