
Как мне поместить $\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}