[Tex/LaTex] Big Summation Sign

amsmath

i want to change the Summation Sign so thats as big as the text i wrote after.

\documentclass[a4paper, 12pt,fleqn]{article} 
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[fleqn]{amsmath}
\usepackage{mathptmx}
\begin{document}
$\sum C_i$
\end{document}

How can i change it like in the following picture ?

Summationsign

why the rest of my code is not in the right code sample???

Best Answer

You can require \displaystyle for the formula, but this will probably change the interlining locally, especially if there are bounds for the sum. Another solution would be to use \medop from nccmath, which defines a bunch of medium-sized commands for formulae (~80 % of displaystyle):

\documentclass[a4paper, 12pt,fleqn]{article}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[fleqn]{amsmath}
\usepackage{mathptmx}
\usepackage{nccmath}

 \begin{document}

$\sum C_i$\qquad
$\displaystyle\sum C_i$\qquad
$\medop\sum C_i$

\end{document} 

enter image description here