我的问题是这个.我有命令
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$a_n \xrightarrow{\scriptscriptstyle n\to\infty} 0$
\end{document}
从而产生。
我怎样才能改变此命令(希望以一种简单的方式)以获得,即标签更接近箭头,因此命令不会在行之间产生难看的额外空间。
答案1
这是一个丑陋的黑客攻击,但它似乎确实有效:
$a_n \xrightarrow{%
\raisebox{-2pt}[0pt][0pt]{%
\ensuremath{\scriptscriptstyle n\to\infty}}} 0$
如果您希望它能够更广泛地发挥作用,您可以使用\mathchoice
I presume 将一些东西放在一起。