Math & Science ⇒ \dot inside \bigcup
\dot inside \bigcup
exists \cup and \bigcup command that includes a dot centered in it? Not, MnSymbol package.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
\dot inside \bigcup
Code: Select all
\documentclass{article}
\usepackage{etoolbox}
\makeatletter
\providerobustcmd*{\bigcupdot}{%
\mathop{%
\mathpalette\bigop@dot\bigcup
}%
}
\newrobustcmd*{\bigop@dot}[2]{%
\setbox0=\hbox{$\m@th#1#2$}%
\vbox{%
\lineskiplimit=\maxdimen
\lineskip=-0.7\dimexpr\ht0+\dp0\relax
\ialign{%
\hfil##\hfil\cr
$\m@th\cdot$\cr
\box0\cr
}%
}%
}
\makeatother
\begin{document}
$a \bigcupdot a \bigcup a$
\[ \bigcupdot a \bigcup a \]
\[ T_{a \bigcupdot a \bigcup a} \]
\end{document}