方程式的排列

方程式的排列

在此处输入图片描述

我怎样才能像这样显示方程式?我试过 \begin{aligned} 但一切都居中。flalign 也显示错误

答案1

这个怎么样? 在此处输入图片描述

\documentclass[fleqn]{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
  \begin{split}
    a &= b, a = b, a = b,\\
    a &= b, \\
    a &= b, a = b, \\
    a &= b, a = b, a = b,
  \end{split}
\end{equation}
where
\begin{equation}
  \begin{split}
    a &= b,\\
    a &= b, a = b,\\
    a &= b, a = b, a = b \\
    a &= b, a = b.
  \end{split}
\end{equation}

\end{document}

答案2

这会将所有方程式左对齐。您可以使用对齐&&&而不是&之前对齐来居中它们,但这看起来更像原始的。

\documentclass[fleqn]{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
  &\begin{aligned}
    a &= b, a = b, a = b,\\
    a &= b, \\
    a &= b, a = b, \\
    a &= b, a = b, a = b,
  \end{aligned}
\intertext{where}
  &\begin{aligned}
    a &= b,\\
    a &= b, a = b,\\
    a &= b, a = b, a = b, a=b \\
    a &= b, a = b.
  \end{aligned}
\end{align}

\end{document}

演示

相关内容