答案1
使用\bm
代替\bf
。并且\[...\]
代替$$...$$
。
\documentclass{article}
\usepackage{bm}
\begin{document}
\[x(t), \bm{x}(t), \bm{x(t)}\]
\end{document}
答案2
因为\bf
是(已弃用)转变转向在. 它不接受 形式的参数\bf{x}
,而应该使用{\bfseries x}
(而不是{\bf x}
。参见\textit
我使用或\it
或\bfseries
等有关系吗\bf
?和
两个字母的字体样式命令(\bf
,,\it
...)会在 LaTeX 中复活吗?
相反,使用\boldsymbol
(来自amsmath
) 或者\mathbf
:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[ x(t), \boldsymbol{x}(t), \mathbf{x}(t), \boldsymbol{x(t)}, \mathbf{x(t)} \]
\end{document}