【Latex】如何避免频繁的输入\mathbf

【Latex】如何避免频繁的输入\mathbf
使用一个小技巧,定义命令\*,代替\mathbf,这少打了许多字

\documentclass{article}

\def\*#1{\mathbf{#1}}

\def\ab{ab}
\begin{document}
	 $\*v, \*w, \*\ab, \*\Gamma$.
	\end{document}

你可能感兴趣的:(latex)