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?
Asked
Active
Viewed 5.2k times
23
2 Answers
22
If you always want the uppercase Greek letter in italics, the easiest method is to load amsmath and change the meaning of \Gamma and similar commands:
\documentclass{article}
\usepackage{amsmath}
\let\Gamma\varGamma
\let\Delta\varDelta
\let\Theta\varTheta
\let\Lambda\varLambda
\let\Xi\varXi
\let\Pi\varPi
\let\Sigma\varSigma
\let\Upsilon\varUpsilon
\let\Phi\varPhi
\let\Psi\varPsi
\let\Omega\varOmega
\begin{document}
$\Gamma \Delta \Theta \Lambda \Xi \Pi
\Sigma \Upsilon \Phi \Psi \Omega$
\end{document}

If instead you need both varieties, then input the italic ones with the var prefix: \varGamma and so on.
Note that some font packages, notably kpfonts and fourier, allow for options that decide whether using by default italic Greek uppercase in math.
egreg
- 1,121,712
18
amsmath defines the uppercase greek to follow math alphabet switches:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
$a +\Sigma + \Pi$
$\mathit{a +\Sigma + \Pi}$
\end{document}
David Carlisle
- 757,742
-
1note that the shape of the
\mathitais not" the same as if it's just an ordinary matha(this is true for computer modern, but it may not be for other fonts).\mathitis ordinarily used for italic words* in math environments; single letters are assumed to be variables so the style is adjusted slightly. in this way, a math variableacan be distinguished visually from the article "a" in english; in other languages, other single letters sometimes have non-mathematical semantics. – barbara beeton Dec 16 '12 at 18:14 -
\mathnormalwill do here as well for the Greek letters and typeset an ordinary matha– Dec 16 '12 at 18:27
\Gammaand an italic gamma for\VarGamma. Is there a new solution, to fix that via options ofamsmath? Do I have to defeine all myletcommands after\begin{document}(which I think quite annoying)? – LaRiFaRi Jul 19 '13 at 13:55upgreekpackage. – egreg Jun 21 '14 at 19:52