[Tex/LaTex] How to write larger \natural symbol

math-modemath-operatorssymbols

If we want to write big \sum symbol, we can write $\sum\limits_{i=1}^n x_i$.

I want to do similar thing for \natural symbol which will be used to denote the boundary connected sum.

How can I do this?

Best Answer

Saying \limits does not increase the size of the summation symbol, it just moves the limits.

\documentclass{article}
\usepackage{amsmath}
\begin{document}
$\sum\limits_{i=1}^n$ \quad $\sum_{i=1}^n$ \quad
\end{document}

If you want to do the same with the \natural symbol you need to use \mathop.

$\natural_{i=1}^n$ \quad $\mathop\natural\limits_{i-1}^n$

If you actually want a larger \natural you can create one with \large, \Large, etc.

\[ \mathop{\hbox{\Large$\natural$}}\limits_{i=1}^n \natural \]

You could also use \scalebox from the graphicx package.