我如何将 放在$\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}