22

I would like to place a lower limit under two consecutive \sums, somewhere in between. So I have \sum_{j=1}^{\infty}\sum_{k=1}^{\infty} and would like to place j>k in the lower limit between the two sums. I believe the multiple integral operator has this kind of functionality.

asar
  • 223

2 Answers2

33

Something like:

\mathop{\sum_{j=1}^{\infty}\sum_{k=1}^{\infty}}_{j>k}

maybe?

Looks like this:

enter image description here

Or if you want it on the same line as j=1 and k=1, then maybe:

\mathop{\sum^{\infty}\sum^{\infty}}_{j=1\ j>k\ k=1}

enter image description here

frabjous
  • 41,473
5

There is an equivalent alternative.

\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{mathtools}

\begin{document}
  \[
    \underset{j>k}{\sum_{j=1}^{\infty}\sum_{k=1}^{\infty}}
  \]
\end{document}