16

I have a problem with the subscript under the sum,

\sum_{i \in X} \sum_{i \in \bar{X}}

for example gives the subscript at different heights for each sum. Does anyone know how to fix this?

Mico
  • 506,678
Vincent
  • 507
  • 1
    Welcome to TeX.sx! Usually, we don't put a greeting or a "thank you" in our posts. While this might seem strange at first, it is not a sign of lack of politeness, but rather part of our trying to keep everything very concise. Upvoting is the preferred way here to say "thank you" to users who helped you. – Mensch Oct 12 '12 at 11:34

2 Answers2

26

This can be solved using the mathtools package and its command \adjustlimits:

\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[
  \adjustlimits\sum_{i \in X}\sum_{i \in \bar{X}}
\]
\end{document}

enter image description here

Stefan Kottwitz
  • 231,401
9

Vertical adjustments are also possible via \vphantom:

enter image description here

\documentclass{article}
\begin{document}
\[
  \sum_{i \in X}\sum_{i \in \bar{X}} \quad \mbox{compared to} \quad
  \sum_{i \in X\vphantom{\bar{X}}}\sum_{i \in \bar{X}}
\]
\end{document}\end{document}​
Werner
  • 603,163