tikz-pgf – Sketching Simple Arrows with Different Directions

arrowsdiagramstikz-pgf

I want to sketch this figure..
if you guide me to draw one of this arrows with direction i would be grateful..

some directed arrows

Best Answer

You could use the tikz package and the arrows and decorations library to achieve something similar to your drawing.

\documentclass[tikz]{standalone}
\usetikzlibrary{arrows,decorations.pathmorphing}
\begin{document}
\begin{tikzpicture}[
  >=stealth',
  pos=.8,
  photon/.style={decorate,decoration={snake,post length=1mm}}
]
  \draw[gray,thick] (-2,0) -- (2,0);
  \draw[->] (135:2) -- node[below left,pos=.2] {$P$} (0,0);
  \draw[->] (0,0) -- node[below right] {$P$} (45:2);
  \draw[->] (0,0) -- node[above right] {$P$} (-45:2);
  \draw[->,photon] (0,0) -- node[above left] {$SV$} (60:2);
  \draw[->,photon] (0,0) -- node[below left] {$SV$} (-60:2);
\end{tikzpicture}
\end{document}

enter image description here