答案1
您可以使用剪辑的\asymp
符号,然后将其堆叠<
或堆叠>
在其上方。
该符号将自动缩放下标或上标。
\documentclass{article}
\usepackage{amsmath}
\usepackage{trimclip}
\makeatletter
\DeclareRobustCommand{\lasymp}{\lg@asymp{<}}
\DeclareRobustCommand{\gasymp}{\lg@asymp{>}}
\newcommand{\under@asymp}[1]{\clipbox{0pt 0pt 0pt {0.5\height}}{$\m@th#1\asymp$}}
\newcommand{\lg@asymp}[1]{\mathrel{\mathpalette\lg@asymp@{#1}}}
\newcommand{\lg@asymp@}[2]{%
\vcenter{%
\offinterlineskip
\m@th
\ialign{%
\hfil##\hfil\cr
$#1#2$\cr
\under@asymp{#1}\cr
}%
}%
}
\makeatother
\begin{document}
$a \lasymp b \asymp c \gasymp d$
$\scriptstyle a \lasymp b \asymp c \gasymp d$
\end{document}