11

I want to be able to make several symbols bold by grouping them within some sort of bolding command. I can make a single symbol bold by using (for example)

\boldsymbol \phi

but I want to be able to bold several symbols, something like:

{\boldsymbol \phi \vee \psi}

This doesn't work. I've tried \bf in a group as well, which Mathjax says it supports, but it doesn't.

How can I achieve this, I don't want to have to put \boldsymbol on every single symbol!

1
  • It's too bad that people on the LaTeX branch of stack exchange delete all questions about MathJax. LaTeX programmers are the people who are mostly likely to know how to do something in MathJax. Commented Sep 20, 2022 at 1:04

1 Answer 1

18

Use \boldsymbol{\phi \vee \psi}. Note that \boldsymbol is a macro that takes an argument (like \mathbf{}), not a switch (like \bf). Also, note that in TeX, \bf only affects certain symbols (basically, just the letters and numbers), and MathJax does the same. So in TeX, as well as MathJax, {\bf \phi \vee \psi} will produce the same thing as \phi \vee \psi.

Not the answer you're looking for? Browse other questions tagged or ask your own question.