答案1
您的符号有点复杂。由于我不知道标准符号,因此我建议这样做:
\asymp
它由两个标准符号(和)叠加而成-
,不需要额外的包。它看起来(在我看来)像是\equiv
(≡
)的双曲版本。
\documentclass{article}
\newcommand{\samehyp}{\mathrel{\ooalign{\hfil$\asymp$\hfil\cr\hfil$-$\hfil\cr}}}
\begin{document}
$(a,b)\samehyp(c,d)$
\end{document}
关于如何构建自己的符号的一般说明,我建议这个问题及其答案。
注意:如果您打算使用此符号,\scriptstyle
或者\scriptscriptstyle
您将需要一个能够适应样式变化的更复杂的版本:
\documentclass{article}
%\newcommand{\samehyp}{\mathrel{\ooalign{\hfil$\asymp$\hfil\cr\hfil$-$\hfil\cr}}}
\makeatletter
\newcommand{\samehyp}{\mathrel{\mathpalette\s@mehyp\relax}}
\newcommand{\s@mehyp}[2]{%
\ooalign{%
$\m@th#1\asymp$\cr
\hidewidth$\m@th#1-$\hidewidth\cr
}%
}
\makeatother
\begin{document}
$(a,b)\samehyp(c,d)_{(a,b)\samehyp(c,d)_{(a,b)\samehyp(c,d)}}$
\end{document}
如果您确实想要您绘制的符号,您可能必须自己设计它。我建议tikz
(设计符号)并scalerel
使其与您选择的符号大小相同(我选择了+
)。
\documentclass{article}
\usepackage{tikz,scalerel}
\newcommand{\samehyp}{\mathrel{\scalerel*{\tikz{\draw[line width=2pt](0,.3)--(1,.3)(0,.5)--(1,.5)(0,.7)--(1,.7)(.6,1)to[out=-90,in=180](1,.6)(.4,0)to[out=90,in=0](0,.4);}}{+}}}
\begin{document}
$(a,b)\samehyp(c,d)$
\end{document}