答案1
欢迎!以下是编写方程的方法。我使用包\bm
中的命令添加了另一个解决方案bm
,该命令允许编写粗体斜体数学。
\documentclass{article}
\usepackage{amsmath}
\usepackage{bm}
\begin{document}
\begin{tabular}{ll}
With \verb|\mathbf|: & \( \mathcal{D} = \{ (\mathbf{x}_i, y_i) \}_{i=1}^N \) \\
With \verb|\bm|: & \( \mathcal{D} = \{ (\bm{x}_i, y_i) \}_{i=1}^N \)
\end{tabular}
\end{document}