如何向 \thicksim 数学符号添加向外指向的箭头?

如何向 \thicksim 数学符号添加向外指向的箭头?

我需要一个看起来像 的符号\thicksim,但每侧都有向外的箭头。有没有可以用来实现所需效果的包?

提前致谢。

答案1

我可以建议将标准符号适当旋转到MnSymbol名为 的包中\squigarrownwse(有两个变体,仅使用 或\rotatebox或),其左侧和右侧都有箭头,如附图所示,这可能是您喜欢的符号。您可以通过插入或省略这些空白\rotatebox+\reflectbox来确定您想要的空白。\,

在此处输入图片描述

\documentclass[a4paper,12pt]{article}
\usepackage{MnSymbol}
\usepackage{graphicx}

\newcommand{\squisimm}{\rotatebox[origin=c]{-90}{$\squigarrownwse$}}
\newcommand{\squisim}{\rotatebox[origin=c]{-90}{\reflectbox{$\squigarrownwse$}}}

\begin{document}
$f(x)\squisim\, g(x), \quad \psi(x)\squisimm\, \varphi(x)$
\end{document}

附录:当然,这个代码比之前的代码更好,因为fdsymbol包中的箭头是水平的而不是倾斜的。

在此处输入图片描述

\documentclass[a4paper,12pt]{article}
\usepackage{amssymb}
\usepackage{fdsymbol}%%%%%%%%% <----------I prefer this package
\usepackage{graphicx}
\newcommand{\horsquigarrow}{\rotatebox[origin=c]{-90}{$\updownsquigarrow$}}
\begin{document}
\noindent Peraphs this is a better symbol because the arrows are horizontal and not inclined: see example below. 
\begin{equation}
    \lambda \horsquigarrow \mu, \quad  \text{ other symbol}
\end{equation}
\end{document}

其他图片:

在此处输入图片描述

相关内容