将方程式放在不同的行上

将方程式放在不同的行上

我是 LaTex 新手,刚开始用它写第一篇文章。我有许多方程式要显示,但我卡在了最基本的层面。我输入的所有方程式都显示在一行中,如图所示。有人能告诉我我在这里犯了什么错误吗?

\documentclass[12pt,a4paper]{article}
\usepackage{amsmath}
\begin{document}
\title{force}
\maketitle
\begin{equation}
m_1*a_1 = F1
m_2*a_2 = F2
\end{equation}
\end{document}

谢谢 方程式以行显示

答案1

环境equation只能显示一条方程线。您很可能想使用gatheralign,后者可用于对齐=

\documentclass[12pt,a4paper]{article}
\usepackage{amsmath}
\begin{document}
\title{force}
\maketitle
\noindent
Example for \texttt{gather}:
\begin{gather}
m_1*a_1 = F1\\
m_2*a_2 = F2
\end{gather}
Example for \texttt{align}:
\begin{align}
m_1*a_1 &= F1\\
m_2*a_2 &= F2
\end{align}
\end{document}

结果

答案2

amsmath有许多用于表示多个或多行方程的环境。请查看文档:texdoc amsmath

如果更方便的话,还有一个在线工具:http://www.texdoc.net/

相关内容