Text FormattingWrite Limits below the Union of Sets Symbol

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
avkuvalekar
Posts: 1
Joined: Sat Sep 10, 2011 8:20 pm

Write Limits below the Union of Sets Symbol

Post by avkuvalekar »

Hi,

I am an absolute noob in LaTeX. Any help would be immensely appreciated.
I wish to write the following -

Code: Select all

A = \cup_{x \in B) O_x
O_x are sets with a subscript x. So, set A is a union of all such sets corresponding to each x in B. I want the x \in B to appear under union symbol and not as a subscript. I am sure there will be a way to do this. Any idea how?

Thanks.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Write Limits below the Union of Sets Symbol

Post by frabjous »

I think it's normal to use \bigcup for that, rather than \cup. \bigcup is the kind of operator where the subscript will be written underneath in displayed math.

If you really want to write subscript underneath regular \cup, you could use the \mathop command, which makes its argument behave as a big operator.

Compare these two:

Code: Select all

\documentclass{article}
\begin{document}

\[ A = \bigcup_{x \in B} O_x \]

\[ A = \mathop{\cup}_{x \in B} O_x \]

\end{document}

dkrulewich
Posts: 1
Joined: Wed Feb 05, 2014 10:40 pm

Write Limits below the Union of Sets Symbol

Post by dkrulewich »

This was a handy suggestion. I found it also works, for example, with integration:
\[ A = \mathop{\int}_0^\infty x \,dx\].

Although, I'm not sure if I like the way it looks.
Post Reply