\textbf 无法正常工作并返回错误

\textbf 无法正常工作并返回错误

我有以下代码:

\begin{center}
    \textbf{W}  =  the player with the white dice win the game, \\ % Line 1
    \textbf{B_{i1}}  =  the red die shows i, where  i  =  1,2,3,4,5,6 % Line 2
\end{center}

当我从第 2 行删除 \textbf{} 时,代码成功退出,但出现以下错误:

缺少插入的 $。\textbf{B_i}
多余的 },或者忘记了 $。\textbf{B_i}
命令 \end{center} 在数学模式下无效。\end{center}
出现问题 - 可能缺少 \item。\end{center}
出现问题 - 可能缺少 \item。\end{center}
缺少插入的 $。\end{center}
缺少插入的 }。\end{center}

我看过了这里这里但我发现它们没什么帮助。

有人帮忙吗?提前谢谢

答案1

我猜你正在寻找这样的东西:

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\[
\begin{split}
\mathbf{W}     &= \text{the player with the white dice wins the game,} \\ % Line 1
\mathbf{B}_{i} &= \text{the red die shows $i$, where $i =  1,\dotsc,6$.} % Line 2
\end{split}
\]

\end{document}

在此处输入图片描述

我使用未编号显示的方程式\[...\]代替center环境,并对齐等号。

\textbf是一个使粗体显示出来的宏文本:如果你写,\textbf{B_i}你会得到一个错误,因为下划线只在数学模式下允许使用;如果你写,\textbf{$B_i$}你不会得到错误,但数学当然不是粗体。

相关内容