cómo poner un símbolo encima del producto tensorial

cómo poner un símbolo encima del producto tensorial

¿Cómo pongo un $\frown$derecho encima $\otimes$? Lo intenté \stackrelpero deja demasiado espacio entre los símbolos.

Respuesta1

He aquí una posibilidad:

\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}

ingrese la descripción de la imagen aquí

Respuesta2

\documentclass{article}
\usepackage{stackengine,scalerel}
\def\frownotimes{\mathbin{\ThisStyle{\ensurestackMath{\stackengine{-1.4\LMpt}{%
  \SavedStyle\otimes}{\mkern1mu\SavedStyle_\frown}{O}{c}{F}{T}{S}}}}}
\begin{document}
$A \frownotimes B_{x \frownotimes y}$
\end{document}

ingrese la descripción de la imagen aquí

información relacionada