2

To conserve space, I wish to generate

$\sum_{i \in B}$

enter image description here

However, when I put the Latex code into \begin{equation}, using

\begin{equation}
    \sum_{i \in B}
\end{equation}

it becomes enter image description here

No. Just no.

Can someone please help to make the subscript more like the top one. Thanks!

Mico
  • 506,678
Fraïssé
  • 3,139

1 Answers1

4

Use amsmath with the nosumlimits option.

\documentclass{article}
\usepackage[nosumlimits]{amsmath}

\begin{document}

\begin{equation}
\sum_{a\in A}\prod_{b\in B}
\bigcap_{c\in C}
\end{equation}

\end{document}

enter image description here

egreg
  • 1,121,712