[Tex/LaTex] Greek letters in italic in math equation

italicsymbols

I use \Pi and \Sigma in my math equations however, they are not printed in italic like other text. I guess this is because they are symbols and not really text. Putting \textit into the equation has no effect at all. Is there a way to italic these symbols?

Best Answer

amsmath defines the uppercase greek to follow math alphabet switches:

enter image description here

\documentclass{article}
\usepackage{amsmath}

\begin{document}

$a +\Sigma + \Pi$

$\mathit{a +\Sigma + \Pi}$

\end{document}