Fixing Subscript and Superscript with $\Sigma$

  • Context: MHB 
  • Thread starter Thread starter DeusAbscondus
  • Start date Start date
Click For Summary
SUMMARY

The discussion focuses on formatting subscript and superscript in LaTeX using the summation symbol $\Sigma$. Users are advised to use the command \sum_{k=0}^{\infty} for proper formatting in displayed equations. For inline equations, the command \displaystyle \sum_{k=0}^{\infty} is recommended to ensure limits appear correctly above and below the symbol. Additionally, using \sum\limits_{k=0}^{\infty} can be a workaround for environments that do not support display math.

PREREQUISITES
  • Basic understanding of LaTeX syntax
  • Familiarity with mathematical notation in LaTeX
  • Knowledge of inline vs. display math environments
  • Experience with using math tags in LaTeX editors
NEXT STEPS
  • Research LaTeX formatting for mathematical symbols
  • Learn about the differences between inline and display math in LaTeX
  • Explore advanced LaTeX commands for mathematical expressions
  • Investigate the use of MATH tags in various LaTeX editors
USEFUL FOR

Mathematicians, students, educators, and anyone using LaTeX for typesetting mathematical documents will benefit from this discussion.

DeusAbscondus
Messages
176
Reaction score
0
Hi folks,
Could someone please tell me how I can clean this up, $\Sigma_{k=0}^\infty$ placing sub-script and super-script directly below and above $\Sigma$ respectively?

Here is the raw code I used to get the above faulty text:
Code:
\Sigma_{k=0}^\infty
Thanks kindly,
Deo Abscondo
 
Physics news on Phys.org
DeusAbscondus said:
Hi folks,
Could someone please tell me how I can clean this up, $\Sigma_{k=0}^\infty$ placing sub-script and super-script directly below and above $\Sigma$ respectively?

Here is the raw code I used to get the above faulty text:
Code:
\Sigma_{k=0}^\infty
Thanks kindly,
Deo Abscondo

Try doing
Code:
\sum_{k=0}^{\infty}
instead will give you $\sum_{k=0}^{\infty}$. However, if you're not in \$\$ ... \$\$ land, then you'll have to do use this instead
Code:
\displaystyle \sum_{k=0}^{\infty}
to get the limits to appear above and below like this: $\displaystyle\sum_{k=0}^{\infty}$. There's a way to brute force it if you're not in an displayed environment:
Code:
\sum\limits_{k=0}^{\infty}
as seen here: $\sum\limits_{k=0}^{\infty}$
 
Also, using the MATH tags (click the sigma button in the toolbar) as follows:

$$\sum_{k=0}^{\infty}$$

will produce:

$$\sum_{k=0}^{\infty}$$
 

Similar threads

  • · Replies 8 ·
Replies
8
Views
22K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
10K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 4 ·
Replies
4
Views
5K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 0 ·
Replies
0
Views
6K