I would like to create a new "big operator", by which I mean something like the Σ character used for summations.

I know about the \DeclareMathOperator* command, which creates an operator whose superscripts and subscripts are written directly above and below the operator. Here is an example of that.
\documentclass{article}
\usepackage{amsmath}
\usepackage{amsfonts}
\DeclareMathOperator*{\foo}{\maltese}
\begin{document}
\[
\foo_{i=3}^{6}(f^2(i))
\]
\end{document}

However, I would like to make my operator "big". I tried this:
\DeclareMathOperator*{\foo}{\text{\Large $\maltese$}}

but that feels like a bit of a hack. Besides, the operator is too high, and needs moving down a tad to align it properly with its operand. So, what's the proper way to do this? How, for instance, is the \sum operator defined?


\show\sumreveals that the sigma symbol is stored in\mathchar"1350. – jub0bs May 28 '13 at 12:43