[Tex/LaTex] How to make this equation bold

boldequationsmath-mode

enter image description here

I tried $ \mathbf { 36x^2y+54xy^ 2} $

Best Answer

I suggest you use \boldmath before entering math mode. Use grouping to keep the scope of the directive local.

enter image description here

\documentclass{article}
\begin{document}
$36x^2y+54xy^2$

{\boldmath $36x^2y+54xy^2$} % use { and } to localize scope of \boldmath

$36x^2y+54xy^2$
\end{document}