错误:\item 在数学模式下无效

错误:\item 在数学模式下无效

我想在正则表达式中添加竖线,但输入时一直出现错误\mid。你能帮忙吗?

\item \textbf{Give a regular expression for the language accepted by the automaton~$A$.} \\\\
(0 \mid 1)*01)0 \mid 1)*\\
 \item \textbf{Explain what makes the automaton~$A$ non-deterministic.}\\\\
 The reason automaton~$A$ is non-deterministic is because in the state q0 reading a 0 can either lead to $q_0$ or $q_1$.

答案1

\mid导致 tex 切换到数学模式,并且当到达下一个时它仍然处于数学模式\item,因此出现意外错误消息。

代替你所拥有的,用\mid未编号的数学显示制作一行:

\item \textbf{Give a regular expression for the language accepted by the automaton~$A$.}
\[ (0 \mid 1)*01)0 \mid 1)* \]
 \item \textbf{Explain what makes the automaton~$A$ non-deterministic.}

 The reason automaton~$A$ is non-deterministic is because in the state $q_0$ reading a $0$
 can lead to either $q_0$ or $q_1$.

正如已经评论的那样,使用双反斜杠不是一个好习惯。请参阅 何时使用 \par\\ 了解更多信息。

编辑:根据关于什么是数学什么不是数学的评论,我调整了原始代码;为了清楚起见,我还将我的“编辑铅笔”应用到“任一”的位置。(对我的假设表示歉意;请参阅我的用户资料以了解我为什么这么挑剔。)

相关内容