[Tex/LaTex] Looking for a symbol (arrow with dot)

arrowssymbols

I am looking for this symbol:

image

I recently discovered it in a paper. However, I was not able to find it in the "Comprehensive List" (symbols-a4.pdf) or anywhere else.

Best Answer

I've never seen this symbol, but you can easily build one very similar. This is my approach in text mode: MWE

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{ifsym}
\newcommand{\arrowdot}{\rule[0.5ex]{2em}{0.1em}%
\hspace{-1em}\textbullet{}%
\raisebox{-.2em}{\textifsymbol[ifgeo]{116}}
}
\newcommand{\arrowdotdot}{\rule[0.5ex]{2em}{0.1em}%
\hspace{-1.5em}\textbullet{}\textbullet{}%
\raisebox{-.2em}{\textifsymbol[ifgeo]{116}}
}


\begin{document}

\textbackslash{\tt arrowdot~~~} \arrowdot

\textbackslash{\tt arrowdotdot} \arrowdotdot
\vspace{3ex}

Subway \arrowdot Airport \arrowdotdot Railway

\end{document}