是否有类似 ⊎ 的运算符,只是用减号代替加号?

是否有类似 ⊎ 的运算符,只是用减号代替加号?

我需要在我的论文中使用类似于 ⊎ 的运算符。所需的符号看起来像 ⊎,只是在“U”内有一个减号而不是加号。我找不到任何符号。有人能指点一下我在哪里可以找到这个符号吗?

答案1

\documentclass{article}
\usepackage{stackengine}
\begin{document}
\stackMath
\[\def\stacktype{L}\setstackgap{L}{.4ex}
x\mathrel{\stackon{\cup}{\scriptscriptstyle+}}y
 \mathrel{\stackon{\cup}{\scriptscriptstyle-}}z
\]
\end{document} 

在此处输入图片描述

答案2

\usepackage{amsmath}
\makeatletter
\def\moverlay{\mathpalette\mov@rlay}
\def\mov@rlay#1#2{\leavevmode\vtop{%
   \baselineskip\z@skip \lineskiplimit-\maxdimen
   \ialign{\hfil$\m@th#1##$\hfil\cr#2\crcr}}}
\newcommand{\charfusion}[3][\mathord]{
    #1{\ifx#1\mathop\vphantom{#2}\fi
        \mathpalette\mov@rlay{#2\cr#3}
      }
    \ifx#1\mathop\expandafter\displaylimits\fi}
\makeatother

\newcommand{\cupmin}{\charfusion[\mathbin]{\cup}{-}}



$ C \cupmin D $

源宏

不相交集合并集的数学符号

相关内容