我想要以下内联:
We have these two points \textbf{a_1} and \textbf{a_2} etc
一旦我选择排版,我就会收到一个标记,表示我缺少 $
因此我接下来尝试了这个:
We have these two points {${\textbf{a_1}}$} and {${\textbf{a_2}}$} etc
我得到了同样的标志...缺少$
有趣的是,如果我使用以下内容:
We have these two points \textbf{a} and \textbf{b} etc
一切进展顺利。
关于如何解决这个问题有什么建议吗?
答案1
答案2
$\textbf{...}$
不允许,因为\textbf
它仅适用于文本模式。
有多种方法可以实现粗体数学,具体取决于所需的输出。
\mathbf
将在数学中打印粗体,但字母是直立的,而\boldmath
并\bm
产生斜体字母。
对于未用粗体打印的符号,也有\boldsymbol
(也) 。amsmath
\mathbf
\documentclass{article}
\usepackage{mathtools}
\usepackage{bm}
\begin{document}
We have these two points $\mathbf{a_1}$ and $\mathbf{a_2}$
We have these two points $\bm{a_1}$ and $\bm{a_2}$
\boldmath We have these two points $a_1$ and $a_2$\unboldmath
\end{document}