[Tex/LaTex] Making a larger sum

math-mode

I have the following code, and the sum sign isn't tall enough, the fraction sticks out from the top and bottom, how do I correct this?

\documentclass[12pt]{article}
\usepackage[a4paper]{geometry}
\usepackage{amsmath}
\begin{document}
$$\sum_{k=n+1}^{\infty} \frac{1}{k!}$$
\end{document}

Thanks in advance.

Best Answer

You may try with the relsize package:

\documentclass[12pt]{article}
\usepackage[a4paper]{geometry}
\usepackage{amsmath}
\usepackage{relsize}

\begin{document}

\[ \sum_{k=n+1}^{\infty} \frac{1}{k!} \]
\[ \mathlarger{\sum}_{k=n+1}^{\infty} \frac{1}{k!} \]

\end{document} 

enter image description here