美文网首页
自学LaTeX【6】:基本数学公式的输入。

自学LaTeX【6】:基本数学公式的输入。

作者: 非文Sorcerer | 来源:发表于2019-02-21 20:52 被阅读0次

    $符号的使用

    借助$符号将想输入的公式括起来,公式显示会更加好看

    • 代码如下所示:
    \documentclass[UTF8]{ctexart}
    
    \begin{document}
    
    $a+b=b+a$
    
    \end{document}
    

    公式独占一行环境的调用

    • 代码如下所示:

      \documentclass[UTF8]{ctexart}
      
      \begin{document}
      
      \begin{equation}
      a(b+c)=ab+ac
      \end{equation}
      
      \end{document}
      
    • 注意事项

    公式独占一行时,不需要键入$符号。

    相关文章

      网友评论

          本文标题:自学LaTeX【6】:基本数学公式的输入。

          本文链接:https://www.haomeiwen.com/subject/yktjyqtx.html