数学模式中缺少$错误

数学模式中缺少$错误

如何纠正缺失 $ 插入的错误

\begin{equation*}


$ V^{(b)}_{i} $ = 
\begin{cases}

 1, & \text{ if the bus b visits stop i }. \\
 0, & \text {otherwise} 

\end{cases}  
\end{equation*} 

答案1

环境equation不应包含任何空行。在 tex 中,空行表示新段落的开始,而在 中不允许出现equation。此外, 的内容equation已经处于数学模式,因此您不想通过$等符号切换出数学模式V^{(b)}_i。另一方面,在案例的条件中,您在命令内部\text,需要写入$b$$i$它会在数学模式下获取这些符号。

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\begin{equation*}
 V^{(b)}_{i}  =
 \begin{cases}
   1, & \text{if the bus $b$ visits stop $i$,} \\
   0, & \text {otherwise.}
 \end{cases}
\end{equation*}

\end{document}

示例输出

如果您使用mathtools而不是/在顶部,amsmath那么就会有一个方便的dcases*环境,其中\text命令会自动用于侧面条件(并且第一部分设置为显示的数学):

\documentclass{article}

\usepackage{mathtools}

\begin{document}

\begin{equation*}
 V^{(b)}_{i}  =
 \begin{dcases*}
   1, &if the bus $b$ visits stop $i$, \\
   0, &otherwise.
 \end{dcases*}
\end{equation*}

\end{document}

相关内容