[Tex/LaTex] How to create an Arrow Symbol

symbols

I am looking for a way to create a symbol of an arrow in which it points in a downward direction but do not know if one already exist. I have tried detexify to come up with nothing.

The picture of the arrow is below:

Picture of Arrow

Best Answer

Using TikZ you can define a command that will give you a stretchable symbol; you can do something like this:

\documentclass{book}
\usepackage{tikz}

\newcommand\myarrow[1][1]{%
  \raisebox{-0.5cm}{\begin{tikzpicture}\draw (0,0) -- (#1,0); \draw[->] (#1,0) -- (#1,-0.5);\end{tikzpicture}}}

\begin{document}
\noindent\myarrow[6.4]
\begin{equation}
  x^n + y^n = z^n.
\end{equation}

\noindent\myarrow[4.8]
\begin{equation}
  a= b + c + d + e + f.
\end{equation}

\end{document}

enter image description here