翻转的 \cong 符号

翻转的 \cong 符号

我正在寻找一个我在一些论文中见过的数学符号。它看起来与符号非常相似\cong,但垂直翻转。换句话说,我正在寻找的是一个带有波浪符号的等号。我见过\eqsim,但这不是我要找的。

任何帮助将不胜感激。

答案1

\documentclass{article}
\usepackage{mathtools,amssymb,graphicx}
\newcommand*{\mycong}{\mathrel{\text{\raisebox{.25ex}{\rotatebox[origin=c]{180}{$\cong$}}}}}
\begin{document}
$A \mycong B_{A \mycong B_{A \mycong B}}$
\end{document}

在此处输入图片描述

答案2

在这种情况下,波浪号可能应该以这样的方式设置,即符号=不会相对于其正常位置移动。

\documentclass{article}
\usepackage{amsmath}

\makeatletter
\newcommand{\@ndereq}[2]{%
  \vtop{
    \lineskiplimit\maxdimen
    \lineskip-.5\p@
    \ialign{$\m@th#1\hfil##\hfil$\crcr=\crcr#2\crcr}%
  }%
}
\newcommand{\fcong}{\mathrel{\mathpalette\@ndereq\sim\relax}}
\makeatother


\begin{document}
$A=B\fcong C_{\fcong=}$
\end{document}

在此处输入图片描述

相关内容