There are two styles of displaying the summation symbol:
- Compressed format. Compressed to fit onto one line. Such as: ∑10n=1n2
- Full format. In a larger, more readable format. Such as: ∑n=110n2
The way to control the display style:
- Compressed format
\sum_{n=1}^{10} n^{2}
- Full format
\displaystyle\sum_{n=1}^{10} n^{2}