텐서 제품 위에 심볼을 넣는 방법

텐서 제품 위에 심볼을 넣는 방법

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

여기에 이미지 설명을 입력하세요

답변2

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

여기에 이미지 설명을 입력하세요

관련 정보