Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. usepackage{pst-plot}
  4.  
  5. begin{document}
  6.  
  7. psset{
  8. xunit = 0.05,
  9. yunit = 0.003,
  10. algebraic
  11. }
  12. begin{pspicture}(-17,-140)(213,2540)
  13. % Axes
  14. psaxes[
  15. dx = 20,
  16. dy = 250,
  17. labels = none,
  18. ticklinestyle = dotted,
  19. tickwidth = 0.5pt,
  20. xticksize = 0 2250,
  21. yticksize = 0 200
  22. ]{->}(0,0)(-4,-60)(210,2400)[$x$,0][$y$,90]
  23. psaxes[
  24. dx = 20,
  25. Dx = 20,
  26. dy = 250,
  27. Dy = 250
  28. ](0,0)(-4,-60)(210,2400)
  29. % Functions.
  30. psplot[linecolor = red]{0}{200}{1.75*x+500}
  31. rput(190,700){$y$}
  32. psplot[linecolor = blue]{0}{200}{10*x}
  33. rput(190,2030){$z$}
  34. end{pspicture}
  35.  
  36. end{document}
  37.  
  38. {psset{xunit=20,yunit=250}

  39. psgrid[subgriddiv=0,griddots=10,gridlabels=0pt](0,0)(10,9)%

  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement