Redefine \mathbf in LaTeX for Custom Font - Tips and Troubleshooting

  • Context: LaTeX 
  • Thread starter Thread starter Dragonfall
  • Start date Start date
  • Tags Tags
    Latex
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 4K views
Dragonfall
Messages
1,023
Reaction score
5
I want to redefine \mathbf to have a different font. I can't seem to make \newcommand work since it says "already defined". Help?
 
Physics news on Phys.org
It's \renewcommand.

Don't use it lightly. It's usually much better to define your own macros as opposed to overriding macros whose definitions have deep meaning.

This looks like an "XY" problem. Underneath the hood you are facing problem X, something about which you haven't told us a single word. You somehow see that approach Y is a solution to your underlying problem, so you ask how to do Y. It's usually much better is to ask us about X directly.

So, what's your real problem, and what is motivating you to want to change \mathbf?
 
I've used \mathbf throughout a very long work, and I want to change the font from what it is to textsf+textbf, which looks less... aggressive. I suppose I could just change every \mathbf instead redefining them.
 
I'd make a custom LaTeX command to get the desired formatting and then use an editor command or sed or something to replace mathbf.
 
What jhae said. But if you really want to do this, it would be better to do it the same way that LaTeX sets the default, i.e. override the command
Code:
\DeclareMathAlphabet      {\mathbf}{OT1}{cmr}{bx}{n}
with your preferred font definition.
 
Alright, thanks everyone.