Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{pgfplots}
  3. pgfplotsset{compat=1.9}
  4. begin{document}
  5. begin{tikzpicture}[baseline]
  6. begin{axis}[
  7. axis lines=left,
  8. xtick=empty,
  9. ytick=empty,
  10. tiny,
  11. ylabel=Edible Resources,
  12. xlabel=Nutritional Need,
  13. title=Distribution of Edibles,
  14. title style={font=tiny},
  15. ]
  16. addplot[ domain=0:10, color=blue ] {2*x};
  17. end{axis}
  18. end{tikzpicture}%
  19. end{document}
  20.  
  21. documentclass{article}
  22. usepackage{pgfplots}
  23. begin{document}
  24. begin{tikzpicture}[baseline]
  25. begin{axis}[
  26. axis lines=left,
  27. xtick=empty,
  28. ytick=empty,
  29. tiny,
  30. ylabel=Edible Resources,
  31. xlabel=Nutritional Need,
  32. title=Distribution of Edibles,
  33. title style={font=tiny},
  34. ]
  35. addplot[ domain=0:10, color=blue ] {2*x};
  36. end{axis}
  37. end{tikzpicture}%
  38. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement