代码之家  ›  专栏  ›  技术社区  ›  Tim unnamed eng

\乳胶中未定义的geqslant控制序列

  •  8
  • Tim unnamed eng  · 技术社区  · 15 年前

    当我编译以下乳胶代码时:

    \begin{align}   
    f_{m}(x) = c_{1,m} \times I(x_{i}^{m} \geqslant t_{m} ) + c_{2,m} \times I(x_{i}^{m} <     t_{m} ),  
    \end{align} 
    

    我总是出错:

    ! Undefined control sequence.  
    <argument> ..._{1,m} \times I(x_{i}^{m} \geqslant   
                                                  t_{m} ) + c_{2,m} \times I...  
    l.124 \end{align}
    

    当我用>=替换\geqslant时,就可以了。

    我已经把amsmath包包括在内了。什么会导致这个问题?

    谢谢和问候!

    1 回复  |  直到 15 年前
        1
  •  13
  •   Etaoin    15 年前

    该命令不是在amsmath包中定义的,而是amssymb包-put \usepackage{amssymb} 在你的序言中,你应该没事。