[Tex/LaTex] How to make a bold and Italic uppercase Greek letter

boldgreekitalicletters

I have tried $\mathit {\boldmath $\Omega$}$, but it doesn't work really.

So, is there any way to make it?

Best Answer

Do you perhaps want the \varOmega in bold?

variant Omega

\documentclass{article}
\usepackage{mathtools}
\usepackage{bm}

\begin{document}

  $\bm{\varOmega}$

\end{document}

Note that in the following code

$\mathit {\boldmath $\Omega$}$

the first $ switches into maths mode (assuming we were not already typesetting maths) and the second $ switches out of maths mode. Then the next switches into it and the last switches out of it.

This means that \boldmath occurs in maths mode, causing an error, and \Omega occurs outside maths mode, causing another (except that TeX is quite confused by this point).

Compare (simplifying by dropping the italics):

$\Omega$ \boldmath $\Omega$

which produces:

normal and bold

Note that here the \Omegas are in maths mode, while the \boldmath is outside it.

Related Question