Math & Science ⇒ \dot inside \bigcup
\dot inside \bigcup
exists \cup and \bigcup command that includes a dot centered in it? Not, MnSymbol package.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
\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}