有圓形交叉點的符號嗎?就像 \oplus 代表加號

有圓形交叉點的符號嗎?就像 \oplus 代表加號

可能的重複:
如何在運算子周圍放置一個圓圈?

有圓形交叉路口標誌的符號嗎?或是另一種方式來呈現如下圖的內容?類似\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}

在此輸入影像描述

相關內容