如何用粗体排版矩阵?我通常使用 bmatrix,所以我尝试了
\documentclass{article}
\usepackage{amsmath, bm}
\begin{document}
\[ \bm{\begin{bmatrix}
1 & 2
\end{bmatrix} }\]
\end{document}
但是当我编译时它就挂起了。
答案1
您可以使用 使整个显示变为粗体\boldmath
。这必须在显示之外输入,因此有必要将其埋在一个组中以使其不会持续存在。我推荐\begingroup ... \endgroup
,但{ ... }
它同样有效,即使并不总是那么容易发现。
要是部分的显示应该加粗,并且\bm
不起作用,可以将应该加粗的部分隔离在内\text{\boldmath $ ... $}
,并
\displaystyle
在必要时添加。
这个例子有点复杂,但我想展示这两种方法,并说明括号是不是在此过程中变得大胆。
\documentclass{article}
\usepackage{amsmath, bm}
\textwidth=.5\textwidth
\begin{document}
\noindent some text above the display.
\begingroup \boldmath
\[ \begin{bmatrix}
1 & 2\\
3 & 4
\end{bmatrix} \]
\endgroup
text below the display; spacing check.
\[ \begin{bmatrix}
1 & 2\\
3 & 4
\end{bmatrix}
+ \text{\boldmath
$\begin{bmatrix}
1 & 2\\
3 & 4
\end{bmatrix}$}
\]
and still more text.
\end{document}