[Tex/LaTex] New command for bold characters in math mode

boldmath-mode

I am using bold characters u,v,w,x in math mode. Is there a way to make a new command for that? Now I always have to type \bm{u}.

Best Answer

You can go

\bmdefine\bu{u}

then use \bu instead of \bm{u} this is a bit quicker than using \bm every time as it only has to work out the corresponding bold font once. (That wouldn't be the case if you used \newcommand\bu{\bm{u}} which would expand to doing \bm every tine.