Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. documentclass[tikz,border=3mm,preview]{standalone}
  2. usetikzlibrary{arrows.meta,positioning,quotes}
  3. usepackage{amsmath}
  4. begin{document}
  5. begin{tikzpicture}[>={Triangle[]}
  6. ]
  7. % coordinate
  8. draw[->] (-0.1,0) node[below left] {0}
  9. -- (3,0);
  10. draw[->] (0,-0.1) -- (0,3.5);
  11. % horizontal line
  12. draw (-0.1,3.5) node[above] {$_{t}p_{x}^{'^{(1)}}$} -- + (0,0);
  13. draw (3.3, 0) node[left] {$t$} -- + (0,0);
  14. % vectors
  15. path[draw=red, fill=red, ultra thick]
  16. (0,2) to [pos=0.5] + (2,-0.3)
  17. (2,1.7) to [pos=0.9] + (3,-0.7);
  18. end{tikzpicture}
  19. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement