LaTeX中文本加粗的方法,给出代码示例,一看就懂:
\documentclass{article}\usepackage{amsmath}\begin{document} 1. yhlleo 2. \textbf{yhlleo} 3. $\textbf{yhlleo}$ 4. $\mathbf{yhlleo}$ 5. $\theta_i$% 6. $\textbf{\theta}_i$ 7. $\mathbf{\theta}_i$ 8. $\pmb{\theta}_i$\end{document}
可以看出2,3,4
三种文本加粗方法基本没什么区别,而对于类似希腊字符的特殊字符是不允许使用\textbf{}
的方式加粗的,编译会报错。对于特殊字符的加粗要使用\pmb{}
的方法,\mathbf{}
没有作用。