[Tex/LaTex] How to make math symbols like \prod smaller

math-modesymbols

I know this is simple, but I can't seem to find the correct code.
If I have
$d \prod$
how can I make the height of the \prod symbol equal to that of d?

Thanks!

Best Answer

Probably you are looking for the greek letter Π, which can be obtained with \Pi.

\documentclass{article}

\begin{document}
  $d\;\Pi$
\end{document} 

enter image description here

Related Question