两个方程及其子方程

两个方程及其子方程

我想要制作以下格式。

A=AB=B

雙方位=德國=E

我尝试使用 align。但是,我未能获得所需的输出。请纠正我。

\begin{align*}  A&=A & B&B \\     C&=C  & D&=D  &E&E    \end{align*} 

感谢您的意见。

答案1

如果您只是在寻找中心的、聚集的方程式,那么使用gather*

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}% http://ctan.org/pkg/amsmath
\begin{document}
Some text before
\begin{gather*}
  A=A \qquad B=B \\
  C=C \qquad D=D \qquad E=E
\end{gather*}
and some text after.
\end{document}

对于更多水平对齐的内容,align*效果很好,但你会有一个悬垂方程(在第二行):

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}% http://ctan.org/pkg/amsmath
\begin{document}
Some text before
\begin{align*}
  A &= A & B &= B \\
  C &= C & D &= D & E &= E
\end{align*}
and some text after.
\end{document}

还有一些选项,取决于您是否希望对它们进行编号或对齐。

相关内容