方程编号和组合块(对齐)

方程编号和组合块(对齐)

我有 2 组 2 个方程式,我想将它们并排打印,中间有一个居中箭头,方程式编号 (1a)、(1b) 在右侧。但我无法正确编号。我能做到的最接近的方法是

\begin{subequations}
\begin{align}
    \begin{aligned}
        a &= b \\ c &=d
    \end{aligned}
    && \implies &&
    \begin{aligned}
        x &=y \\ z &= w
    \end{aligned}
\end{align}
\end{subequations}

这显然只打印一个方程式编号....

答案1

您可以用empheq它来做这件事。

\documentclass{article}
\usepackage{empheq}
\begin{document}
\begin{subequations}
\begin{empheq}[left={\begin{aligned}
        a &= b \\ c &=d
    \end{aligned}}\quad\implies\quad]{align}
    x &=y \\ z &= w
\end{empheq}
\end{subequations}
\end{document}

在此处输入图片描述

相关内容