Fixing Subscript and Superscript with $\Sigma$

  • Context:
  • Thread starter Thread starter DeusAbscondus
  • Start date Start date
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 3K views
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}$$