0

How can I write this style of right arrow?

enter image description here

CarLaTeX
  • 62,716
  • 2
    Welcome to TeX.SX! This looks like a Word-made rightarrow. So if you want it, use Word (or at least use it and copy the character). Else you probably want a LaTeX version such as $\rightarrow$. – TeXnician May 02 '17 at 20:07

1 Answers1

1

This looks like the right arrow from the marvosym package, which I found using Detexify. It looks a bit better when it is Large.

\documentclass{article}
\usepackage{marvosym}
\begin{document}
Surface \MVRightarrow\ Planar

Surface {\Large \MVRightarrow}\ Planar
\end{document}

enter image description here

Marijn
  • 37,699