Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.42 KB | None | 0 0
  1. \begin{tikzpicture}
  2. \begin{axis}[
  3.     xmin=0,xmax=10,
  4.     ymin=0,ymax=10,
  5.     legend style={legend pos=north west},
  6.    axis lines = left,
  7.    xlabel = $t$ (s),
  8.    ylabel = {$v$} (m/s),
  9.    ticks = none
  10. ]
  11. \addlegendentry{$x$}
  12. \addplot[samples=100,domain=0:10,pattern=north west lines,area legend, pattern color=lightgray] {x} \closedcycle;
  13. \addplot[samples=100,domain=0:10]{x};
  14. \addlegendentry{$a$}
  15. \end{axis}
  16. \end{tikzpicture}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement