假设有这个简单的 MWE:
\documentclass[12pt]{article}
\usepackage{newtxtext}
\usepackage{mathtools}
\usepackage{mtpro2}
\begin{document}
Normal in line-mode without the bold: $[{}\dotsb{}]$
Bold in line mode: $\boldsymbol{[}{}\dotsb{}\boldsymbol{]}$.
Using a first formula without the bold and the second formula with the bold:
\begin{equation}
\varphi(\bar{r},t)=k_{e}q\Biggl[\frac{1}{\kappa_\mathbf{vuoto}}\Biggr],\qquad \bar{A}(\bar{r},t)=k_{e}qc^{2}\boldsymbol{\Biggl[}\frac{\bar{u}_{q}}{\kappa_{\mathbf{vuoto}}}\boldsymbol{\Biggr]}
\end{equation}
\end{document}
可以看到,没有加粗的大括号(第一个公式带方程)和加粗的大括号(第二个公式带方程)区别不大。
是否可以稍微增加粗体方括号?
注意:我不能使用该bm
包,因为使用很多包会导致我的书崩溃。
答案1
该软件包的完整版本(但不是“精简”子集)mtpro2
提供了开关\boldmath
。必须在进入数学模式之前执行该开关。
这对于你来说够大胆吗?
\documentclass[12pt]{article}
\usepackage{mathtools,booktabs}
\usepackage{newtxtext,mtpro2}
\begin{document}
\begin{tabular}{@{}rl@{}}
\toprule
\verb+$[{}\dotsb{}]$+ & $[{}\dotsb{}]$ \\
\verb+\boldmath$[{}\dotsb{}]$+ & \boldmath$[{}\dotsb{}]$ \\
\bottomrule
\end{tabular}
\end{document}