[Tex/LaTex] How to put something at the top of the \longrightarrow

math-modestacking-symbolssymbols

I would like to put something at the top of the \longrightarrow, something like
\longrightarrow^{k\rightarrow\infty}. However, instead of putting k\rightarrow\infty on the top right corner, I would like to put it in the middle on the top of \longrightarrow. Could someone help me?

Best Answer

In this instance, I think \xrightarrow would suit you better. Here's an example using the former, and the traditional \overset from amsmath:

enter image description here

\documentclass{article}
\usepackage{amsmath}% http://ctan.org/pkg/amsmath
\begin{document}    
\[
  \mathcal{X}\overset{k\rightarrow\infty}{\longrightarrow}\mathcal{Y} \qquad 
  \mathcal{X}\xrightarrow{k\rightarrow\infty}\mathcal{Y}
\]
\end{document}

\xrightarrow{<stuff>} is an extensible arrow, which conforms in length to the overset argument <stuff>.