[Tex/LaTex] making a big summation sign

math-mode

How can I make a big summation sign?

‎\begin{align}‎
‎\cos x‎ ‎=‎ ‎‎\sum\limits‎_‎{n=0}^{‎\‎‎infty‎} ‎\frac{(ix)^{2n‎}}{(2n)!}‎‎
\end{align}‎

this is the code which I'm using for summation

Best Answer

You can use the command \mathlarger of the relsize package. It increases the size and it can be nested. For example:

\documentclass{article}
\usepackage{amsmath}
\usepackage{relsize}
\begin{document}
\begin{equation}‎
‎‎\cos x‎ ‎=‎ \mathlarger{\mathlarger{‎‎\sum}}_{n=0}^{\infty}\frac{(ix)^2n}{(2n)!}‎‎
\end{equation}‎
\end{document}

equation with bigger sum symbol

.....

Related Question