我怎样才能在乳胶中写出这个数学方程式?

我怎样才能在乳胶中写出这个数学方程式?

以下是我想在 Latex 中写入的内容:

在此处输入图片描述

答案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}

相关内容