This is a follow up question related to this post making a big summation sign
I am trying to rescale the sum sign in the same way as in the above post. The problem is that the lower bound of the sum also becomes bigger which I don't want.
\documentclass[11pt,a4paper,oneside]{report}
\usepackage[pdftex]{graphicx}
\usepackage[T1]{fontenc}
\usepackage{fouriernc}
\usepackage{mathtools}
\usepackage{amsfonts,amsmath,amssymb,amsthm}
\usepackage[a4paper, hmargin={3.5cm,3cm}, vmargin={2.5cm,2.5cm}]{geometry}
\usepackage{relsize}
\begin{document}
\begin{equation}
c_{ij}=\sum_{i^{\prime}<i^{''},j^{\prime}<j^{''}}\begin{pmatrix*}[c]
i&i^{\prime}&i^{''}\\1&2&3
\end{pmatrix*}
\begin{pmatrix*}[c]
i&i^{\prime}&i^{''}\\1&2&3
\end{pmatrix*}
\end{equation}
\begin{equation}
c_{ij}=\mathlarger{\mathlarger{\sum}}_{i^{\prime}<i^{''},j^{\prime}<j^{''}}
\begin{pmatrix*}[c]
i&i^{\prime}&i^{''}\\1&2&3
\end{pmatrix*}
\begin{pmatrix*}[c]
i&i^{\prime}&i^{''}\\1&2&3
\end{pmatrix*}
\end{equation}
\begin{equation}
c_{ij}=\mathlarger{\mathlarger{\mathlarger{\sum}}}_{i^{\prime} <i^{''},j^{\prime}<j^{''}}
\begin{pmatrix*}[c]
i&i^{\prime}&i^{''}\\1&2&3
\end{pmatrix*}
\begin{pmatrix*}[c]
i&i^{\prime}&i^{''}\\1&2&3
\end{pmatrix*}
\end{equation}
\end{document}
output

I think the second version looks best, unfortunately the lower bound is clearly enlarged as well. What can be done to prevent it? Also, why the delimiters of the matrices are not adjusted to the content they surround? Thank you.


_{i'<i'',\,j'<j''}– egreg Sep 11 '14 at 13:28