How can I have linebreaks in my long LaTeX equations?

后端 未结 11 643
广开言路
广开言路 2020-12-22 20:28

My equation is very long. How do I get it to continue on the next line rather than go off the page?

11条回答
  •  执念已碎
    2020-12-22 20:47

    To solve this issue, I used the array environment inside the equation environment like this:

    \begin{equation}
        \begin{array}{r c l}
           first Term&=&Second Term\\
                     &=&Third Term
        \end{array}
    \end{equation}
    

提交回复
热议问题