可能重复:
如何给操作符加上圆圈?
有没有表示带圆圈的交叉路口的符号?或者有其他方式来呈现下图中的内容?类似于\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}