如何将两个不同数字的方程式放在一行中?

How to put two equations in one line with different number?

我必须缩短方程式,并消耗很多垂直space,我想将它们聚集在一行中,但数量不同。

我想要方程式如下所示

a = b (1)  c = d (2)
d = e (3)  e = f (4)

如果您不需要跨方程对齐(例如对齐所有等号),那么 table 可以是一个快速的解决方案:

\documentclass{article}

\usepackage{lipsum}

\begin{document}

\lipsum[2]

\begin{center}
\begin{tabular}{p{3cm}p{3cm}}
  \begin{equation}
    a = b
  \end{equation}
  &
  \begin{equation}
    c = d
  \end{equation} \
  \begin{equation}
    d = e
  \end{equation}
  &
  \begin{equation}
    e = f
  \end{equation}
\end{tabular}
\end{center}

\lipsum[2]

\end{document}