Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{pgfplots}
  3. usetikzlibrary{arrows}
  4.  
  5. begin{document}
  6. begin{tikzpicture}
  7. begin{axis}[axis lines=middle,
  8. xmin=-2,xmax=5,ymin=-15,ymax=15,
  9. xlabel=$x$,
  10. ylabel={$y$},
  11. xtick distance=1
  12. ]
  13.  
  14. addplot[smooth,color=blue,] {x^2-x+2};
  15. end{axis}
  16. end{tikzpicture}
  17. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement