
可能的重複:
如何在運算子周圍放置一個圓圈?
有圓形交叉路口標誌的符號嗎?或是另一種方式來呈現如下圖的內容?類似\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}