
重複の可能性あり:
演算子を円で囲むにはどうすればよいでしょうか?
円で囲まれた交差点の記号はありますか? または、下の画像のようなものをレンダリングする別の方法はありますか?\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}