- 23,729
- 5,936
How do I make Greek letters boldface in LaTeX? When I try \mathbf{}, I just get the regular non-bold Greek letter.
The discussion revolves around how to make Greek letters boldface in LaTeX, specifically addressing the differences between full LaTeX environments and MathJax, which is used on Physics Forums. Participants explore various commands and their effectiveness in different contexts.
Participants generally agree on the limitations of MathJax compared to full LaTeX environments and the effectiveness of the \boldsymbol command, but there is no consensus on the best approach for all scenarios.
The discussion highlights the differences in command functionality between full LaTeX and MathJax, indicating that certain commands may not work as expected in different environments.
Excellent! Thank you so much.andrewkirk said:If you are working in a full LaTeX environment, try \boldmath. to switch on bolding all math chars including Greek letters then \unboldmath to turn it off. Both commands need to be outside the math environment.
In a full LaTeX environment, the following:
$\beta$\boldmath$\beta$\unboldmath$\beta$
comes across as three betas, normal, then bold, then normal.
It doesn't work in MathJax (what PF uses), as that is not full LaTeX, and the commands are issued outside of math environment. Below is what happens with a simple attempt:
##\beta##\boldmath##\beta##\unboldmath##\beta##
gives
##\beta##\boldmath##\beta##\unboldmath##\beta##
Fortunately, PF MathJax appears to have the LaTeX package amsbsy loaded by default, so you can use its \boldsymbol command. The following code
##\beta\boldsymbol{\beta}\beta##
gives
##\beta\boldsymbol{\beta}\beta##