
가능한 중복:
연산자 주위에 원을 어떻게 표시합니까?
동그라미가 있는 교차로 표지판에 대한 기호가 있습니까? 아니면 아래 이미지와 같은 것을 렌더링하는 다른 방법이 있습니까? \oplus
더하기 기호 와 같은 것입니다 . 수학 환경 내에서 이 기호를 하위 색인으로 사용해야 합니다.
내가 기대하는 결과는 다음과 같습니다.
하지만 대신에 이 기호를 사용하세요 .
답변1
확실히 지금은 찾을 수 없는 이 질문의 중복/관련이 있습니다. 당분간 나는 이 tikz 솔루션을 게시하고 있습니다.
\documentclass{article}
\usepackage{tikz}
%% Code borrowed from Altermundus http://tex.stackexchange.com/questions/53698/
\newcommand{\myointersection}{
\mathbin{
\mathchoice
{\ointersection{\displaystyle}}
{\ointersection{\textstyle}}
{\ointersection{\scriptstyle}}
{\ointersection{\scriptscriptstyle}}
}
}
\newcommand{\ointersection}[1]{\tikz[baseline=(X.base), inner sep=0, outer sep=0]\node[draw,circle] (X) {$#1\cap$};}
\begin{document}
\[m^{\Omega}_{i\myointersection j}\left(H\right)\]
\end{document}