我想用“箭头符号”写一个极限。这是,而不是\lim_{n \rightarrow \infty} x_{n} = x
我想使用的x_{n} \rightarrow_{n \rightarrow \infty} x
。我的问题是,对于最后这段代码,出现n \rightarrow \infty
在箭头的右侧下方,而我希望它出现在箭头下方。我该怎么做?
答案1
\xrightarrow
您可以使用提供的可扩展箭头amsmath
,它有两个参数,一个可选参数用于箭头下方的文本,一个必选参数用于箭头上方的文本
\xrightarrow[text below]{text above}
在你的情况下你必须使用
\xrightarrow[n \to \infty]{}
平均能量损失
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
x_{n} \xrightarrow[n \to \infty]{} x
\]
\end{document}
请注意,在极限情况下,最好使用\to
而不是\rightarrow
答案2
amsmath
这是使用包的宏的一种方法\underset
。
\documentclass{article}
\usepackage{amsmath}
\def\xtend{-\!\!\!}
\begin{document}
\[ x_{n} \underset{\scriptscriptstyle n \rightarrow \infty}{\xtend\xtend\rightarrow} x\]
\end{document}
这是一种使用堆栈的方法。选项参数(此处[2pt]
)控制下集的深度。
\documentclass{article}
\usepackage{stackengine}
\stackMath
\def\xtend{-\!\!\!}
\begin{document}
\[ x_{n} \mathrel{%
\stackunder[2pt]{\xtend\xtend\rightarrow}{\scriptscriptstyle n \rightarrow \infty}} x\]
\end{document}