弱单调性的符号(非严格递增符号;平台向上箭头)

弱单调性的符号(非严格递增符号;平台向上箭头)

当我有一个严格递增的数字序列并收敛到某个极限时,我经常使用这个$\nearrow$符号。但是,我想要一个看起来像这样的符号: 在此处输入图片描述

表示该序列弱递增。我试过 detexify,但找不到任何东西,所以我想知道是否有人知道如何制作(找到现有的还是创建一个新的?)这样的符号(及其递减对位)。

谢谢你!

答案1

也许是这样的?

\documentclass{article}
\usepackage{stmaryrd}
\usepackage{trimclip}
\newlength{\nnearrowheight}
\newlength{\ssearrowheight}
\settoheight{\nnearrowheight}{$\nnearrow$}
\settoheight{\ssearrowheight}{$\ssearrow$}
\newcommand{\bottomofnnearrow}{\makebox{\clipbox{0pt 0pt 0pt {.5\totalheight}}{$\nnearrow$}}}
\newcommand{\topofnnearrow}{\raisebox{.37\nnearrowheight}[.5\nnearrowheight][0pt]{\makebox{\clipbox{0pt {.5\totalheight} 0pt 0pt}{$\nnearrow$}}}}
\newcommand{\bottomofssearrow}{\makebox{\clipbox{0pt 0pt 0pt {.5\totalheight}}{$\ssearrow$}}}
\newcommand{\topofssearrow}{\raisebox{.37\ssearrowheight}[.5\ssearrowheight][0pt]{\makebox{\clipbox{0pt {.5\totalheight} 0pt 0pt}{$\ssearrow$}}}}
\newcommand{\upweakto}{\mathrel{%
    \bottomofnnearrow%
    \hspace*{-.7pt}\makebox[0pt]{$-$}\hspace*{.35pt}%
    \topofnnearrow\hspace*{-.65pt}%
}}
\newcommand{\downweakto}{\mathrel{%
    \hspace*{-.65pt}\topofssearrow%
    \hspace*{-.7pt}\makebox[0pt]{$-$}\hspace*{.35pt}%
    \bottomofssearrow%
}}
\begin{document}
\[ x_n \upweakto x \qquad y_n \downweakto y \]
\end{document}

答案2

像这些符号一样的东西?

在此处输入图片描述

\documentclass[a4paper,12pt]{article}
\usepackage{MnSymbol}
\begin{document}
$\sersquigarrow$ and $\nersquigarrow$
\end{document}

相关内容