[Tex/LaTex] Text over/under implies arrow

amsmathmath-modesymbols

I'm currently trying to write over/under an implies arrow in LaTeX (in math mode):

\implies_{text} 

This places the text lower, but next to the arrow, not below it. How can I get it below the arrow?

Best Answer

You can use \xRightarrow[below]{above} from the mathtools (or extpfeil) package or \xLongrightarrow[below]{above} from extarrows. (Have a look at “How to look up a math symbol?” for ideas how you can easily find a particular symbol.)

If you want to keep the the same arrow length as implies, you can use \underset and \overset from amsmath, e.g. \underset{below}{\implies}, or maybe \underset{\mathclap{below}}{\implies} (\mathclap makes it so that “below” doesn’t introduce extra vertical space if it is longer than the arrow. It is included in the immensely useful mathtools package).