Guest User

Untitled

a guest
Dec 12th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. usepackage[svgnames]{xcolor}
  4. usepackage{tikz}
  5.  
  6. begin{document}
  7.  
  8. begin{tikzpicture}
  9.  
  10. foreach x in {0,...,5}
  11. draw [DodgerBlue](x,-1) circle (0.25);
  12.  
  13. foreach x in {0,...,5}
  14. draw [-latex,red](x,-1) -- (x,-1.5);
  15.  
  16. foreach x in {0,...,5}
  17. draw [-latex,DarkGreen](x,-1) -- (x,-0.5);
  18.  
  19. draw [ultra thin] (5,-0.5) -- (0,-1);
  20.  
  21. end{tikzpicture}
  22.  
  23. end{document}
Add Comment
Please, Sign In to add comment