答案1
格式如下\lim
另一个想法是使用类似的格式\lim
,因为上面没有太多地方\nearrow
,旋转的文本更难阅读:
\documentclass{article}
\usepackage{amsmath}
\DeclareMathOperator*{\NEArrow}{\nearrow}
\begin{document}
\[ A_n \NEArrow_{n\to\infty} A \]
\end{document}
尝试改进 Bernard 的回答:
- 通过 围绕数学轴垂直居中
\vcenter
。 - 较小的尺寸可以
n\to\infty
检测当前的数学样式。 - 打包成宏
\xnearrow[<below>]{<above>}
。
示例代码:
\documentclass{article}
\usepackage{rotating}
\usepackage{old-arrows}
\usepackage{amsmath, amssymb}
\makeatletter
% \xnearrow[<below>]{<above>}
\newcommand*{\xnearrow}[2][]{%
\mathchoice
{\@xnearrow\scriptstyle{#1}{#2}}%
{\@xnearrow\scriptstyle{#1}{#2}}%
{\@xnearrow\scriptscriptstyle{#1}{#2}}%
{\@xnearrow\scriptscriptstyle{#1}{#2}}%
}
% #1: math style
% #2: text below arrow
% #3: text above arrow
\newcommand*{\@xnearrow}[3]{%
\rotatebox[origin=c]{30}{%
$#1\xrightarrow[{#2}]{#3}\m@th$%
}%
}
\makeatother
\begin{document}
\[ A_n \xnearrow{n\to\infty} A \]
\end{document}
答案2
答案3
不确定这是否正是你想要的:
\documentclass{article}
\usepackage{rotating}
\usepackage{old-arrows}
\usepackage{amsmath, amssymb}
\begin{document}
\[ A_n\rotatebox{30}{$\xrightarrow{n\to\infty}$} A\]%
\end{document}
编辑:加载 relsize
并使用此代码
\[ \mathlarger{A}_n\rotatebox{20}{$ \xrightarrow{\scriptscriptstyle n\to∞} $} \mathlarger{A} \]%
您将获得此变体: