如何在不改變水平位置的情況下轉到下面的行?

如何在不改變水平位置的情況下轉到下面的行?

我想開始以數學顯示模式編寫,然後從完全相同的 .像這樣的東西:

abc = defg on this line
                       and i continue on the next line

裡面會用到這個\frac

實現這一目標的最佳方法是什麼?最好不使用任何包(我確信一定有一種方法可以直接在 LaTeX 中完成此操作)...

如果這是在文字模式下,我可以保存當前的水平位置,然後執行\newline,然後恢復位置,也許,但這是數學模式。

答案1

只需使用以下命令即可輕鬆獲得array

在此輸入影像描述

\documentclass{article}

\begin{document}

\[
  \setlength{\arraycolsep}{0pt} % May be needed, depending on your requirements
  \begin{array}{ l l }
    abc = defg &       \\
               & hijkl
  \end{array}
\]

\end{document}

答案2

align使用(或)非常簡單 aligned

\documentclass{article}
\usepackage{mathtools}

\begin{document}

\begin{align*}
  abc = defg\text{ on this line} & \\
                        & \text{and I continue on the next line}
\end{align*}

\end{document} 

在此輸入影像描述

相關內容