有subequations
环境的替代品吗?例如,我们可以使用环境align
来代替equations
。 的补码是什么subequations
会产生相同的编号约定?
我查看了帖子,subequations
试图看看是否有关于可能不同的环境的建议,但我没有找到任何东西,这并不意味着它不存在;我只是找不到它。
编辑:
为了避免混淆,我知道 嵌套align
在 内subequations
。但是,我试图subequations
完全避免环境。这是因为我正在尝试排除某些故障,并且与相比,align
运行得更好。因此,我想隔离 的使用(也许这个环境 运行得很好, 但我需要测试一些东西)。hyperref
equations
subequations
hyperref
答案1
您是否已经从 breqn 包测试过 dgroup 环境?
下面您将看到一个 mwe。
\documentclass[]{article}
\usepackage{amsmath}
\usepackage{breqn}
\begin{document}
With amsmath:
\begin{subequations}
\begin{equation}
a^2 + b^2 = c^2
\end{equation}
\begin{equation}
a^2 + b^2 = c^2
\end{equation}
\end{subequations}
With breqn:
\begin{dgroup}
\begin{dmath}
a^2 + b^2 = c^2
\end{dmath}
\begin{dmath}
a^2 + b^2 = c^2
\end{dmath}
\end{dgroup}
\end{document}
下面您将看到从上面的代码生成的 pdf 的插图(抱歉质量不好,这是我第一次发布图片)。