[Tex/LaTex] Use ‘Limits’ on arbitrary math symbol

math-mode

In set theory, the union of an arbitrary number of sets can be taken:

\[ A_1 \cup A_2 \cup A_3 \cup \dots \cup A_k = \cup\limits_{i=1}^{k} A_i\]

I want to set the limits as they appear in \[\sum_{i=1}^{k}\], however even in block equations, they do not show as limits.

Is this possible for an arbitrary math-mode symbol?

Best Answer

enter image description here

there is a bigcup operator for this use, or in general you can use \mathop around any math expression which gives it operator spacing and limits behaviour for superscripts, however doesn't make it larger in displaystyle as \sum and \bigcup are.

\documentclass{article}

\usepackage{amssymb}

\begin{document}


\[ A_1 \cup A_2 \cup A_3 \cup \dots \cup A_k = \bigcup_{i=1}^{k} A_i\]


\[ A_1 \cup A_2 \cup A_3 \cup \dots \cup A_k = \mathop{\cup}_{i=1}^{k} A_i\]
\end{document}
Related Question