我需要在我的论文中使用类似于 ⊎ 的运算符。所需的符号看起来像 ⊎,只是在“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 $
源宏