
$\frown$
의 위에 권리를 어떻게 두나요 $\otimes$
? 시도해 보았지만 \stackrel
기호 사이에 공간이 너무 많이 남습니다.
답변1
가능성은 다음과 같습니다.
\documentclass{article}
\usepackage{amsmath}
\makeatletter
\DeclareRobustCommand\frownotimes{\mathbin{\mathpalette\frown@otimes\relax}}
\newcommand{\frown@otimes}[2]{%
\vbox{
\ialign{##\cr
\hidewidth$\m@th#1{}_\frown$\kern-\scriptspace\hidewidth\cr
\noalign{\nointerlineskip\kern-1pt}
$\m@th#1\otimes$\cr
}%
}%
}
\makeatother
\begin{document}
$A\frownotimes B_{x\frownotimes y}$
\end{document}