MHB Subscripts actually under a union of sets sign

  • Thread starter Thread starter Math Amateur
  • Start date Start date
  • Tags Tags
    Sets Sign Union
AI Thread Summary
The discussion centers on formatting subscripts for the union of sets symbol in LaTeX. The original poster sought to place the condition under the union symbol for clarity, similar to a reference in R.Y. Sharp's text. A solution was provided using the \underset command, which successfully placed the desired condition beneath the union symbol. The conversation also highlighted the importance of display versus text style in LaTeX, affecting how limits are rendered. Overall, the thread emphasizes effective LaTeX formatting techniques for mathematical expressions.
Math Amateur
Gold Member
MHB
Messages
3,920
Reaction score
48
I recently made a post on Linear and Abstract Algebra and used the following symbol

$$ {\bigcup}_{\Omega \subseteq \Gamma , | \Omega | \lt \infty} $$

However, I really wanted (for neatness and clarity) to have the term $$ {\Omega \subseteq \Gamma , | \Omega | \lt \infty} $$ actually under the set union symbol as in the commutative algebra text by R.Y. Sharp - see attachment page 7 exercise 1.12.

Can someone please help in this matter?

Peter
 
Physics news on Phys.org
Peter said:
I recently made a post on Linear and Abstract Algebra and used the following symbol

$$ {\bigcup}_{\Omega \subseteq \Gamma , | \Omega | \lt \infty} $$

However, I really wanted (for neatness and clarity) to have the term $$ {\Omega \subseteq \Gamma , | \Omega | \lt \infty} $$ actually under the set union symbol as in the commutative algebra text by R.Y. Sharp - see attachment page 7 exercise 1.12.

Can someone please help in this matter?

Peter

Hmm, let's see if this works...

$$\underset{\Omega \subseteq \Gamma , | \Omega | \lt \infty}{{\bigcup}}$$

It does! Here you go:

\underset{\Omega \subseteq \Gamma , | \Omega | \lt \infty}{{\bigcup}}
 
Jameson said:
Hmm, let's see if this works...

$$\underset{\Omega \subseteq \Gamma , | \Omega | \lt \infty}{{\bigcup}}$$

It does! Here you go:

\underset{\Omega \subseteq \Gamma , | \Omega | \lt \infty}{{\bigcup}}

Thanks Jameson, appreciate the help

Peter
 
If subscripts and superscripts of big operators are typeset below and above the operator, they are referred to as limits. Whether TeX uses limits depends on whether the formula is in display style (limits are used) or text style (normal sub- and superscipts are used). By default, inline formulas beginning with \( and $ are typeset in text style, while those beginning with \[ and $$ use display style. (Note that $$ is deprecated, at least in PDF documents.) The tags [math]...[/math] on this site apparently create an inline formula but use display style. The style determines many other parameters besides whether to use limits; most noticeable are the size of operators and fractions.

You used the [math] tag, so the formula is in display style, but you enclosed \bigcup in curly braces. This turned it into a generic subformula and TeX did not take into account that inside is a big operator, which treats subscripts in a special way. That's why the subscript was not made into a limit.

Without changing the position of a formula (display or inline), its style can be modified using \displaystyle and \textstyle commands. Independently of this, you can type \limits or \nolimits immediately after a big operator to direct TeX to use limits or not.

Edit: See https://driven2services.com/staging/mh/index.php?threads/283/ for examples of formulas in display style and text style.

Edit 2: The info above relates to big operators (in TeX terminology) like \bigcup. The command \underset can be used in other contexts.
 
Last edited:
Interesting and good to know, Evgeny.Makarov! I'll test this out.

Here is without putting \bigcup in curly brackets:

$$\bigcup_{\text{testing if this works}}$$

And here is with curly brackets:

$${\bigcup}_{\text{testing if this works}}$$

Yep, this way is much faster than my solution. :D
 
Evgeny.Makarov said:
If subscripts and superscripts of big operators are typeset below and above the operator, they are referred to as limits. Whether TeX uses limits depends on whether the formula is in display style (limits are used) or text style (normal sub- and superscipts are used). By default, inline formulas beginning with \( and $ are typeset in text style, while those beginning with \[ and $$ use display style. (Note that $$ is deprecated, at least in PDF documents.) The tags [math]...[/math] on this site apparently create an inline formula but use display style. The style determines many other parameters besides whether to use limits; most noticeable are the size of operators and fractions.

You used the [math] tag, so the formula is in display style, but you enclosed \bigcup in curly braces. This turned it into a generic subformula and TeX did not take into account that inside is a big operator, which treats subscripts in a special way. That's why the subscript was not made into a limit.

Without changing the position of a formula (display or inline), its style can be modified using \displaystyle and \textstyle commands. Independently of this, you can type \limits or \nolimits immediately after a big operator to direct TeX to use limits or not.

Edit: See https://driven2services.com/staging/mh/index.php?threads/283/ for examples of formulas in display style and text style.

Edit 2: The info above relates to big operators (in TeX terminology) like \bigcup. The command \underset can be used in other contexts.

Thanks Evgeny

A most informative post!

Peter
 

Similar threads

Replies
2
Views
2K
Replies
8
Views
2K
Replies
16
Views
3K
Replies
3
Views
2K
3
Replies
100
Views
11K
Replies
2
Views
2K
Replies
7
Views
3K
Replies
9
Views
3K
Back
Top