I have to put a colon inside a bigcup symbol, so that the result is treated exactly like the latter.
I tried different approaches following various posts here and on other places. The best result until now is taking advantage of the package stackengine.
If I use the cup it works correctly, it really looks the same.
If I use the bigcup, on the other hand, the result is not correctly scaled, as you can see with the following code and the attached picture.
\documentclass[a4paper,10pt]{article}
\usepackage{stackengine}
\newcommand{\bigcupcolon}{\mathop{\ensurestackMath{\stackinset{l}{}{c}{+.25ex}{:}{\bigcup}}}}
\newcommand{\cupcolon}{\mathop{\ensurestackMath{\stackinset{l}{-.18ex}{c}{+0.1ex}{:}{\cup}}}}
\begin{document}
$\displaystyle\bigcup_{i\in I}S_i$\hspace{40pt} $S_1\cup S_2$
\vspace{20pt}
$\displaystyle\bigcupcolon_{i\in I}S_i$\hspace{40pt} $S_1\cupcolon S_2$
\end{document}

So the question is, how would you write such a symbol?


$S_1\vee S_2$! – Sigur May 06 '15 at 15:55