如何使用字母作为新标签来开始一个新等式?

如何使用字母作为新标签来开始一个新等式?

我已经用数字建立了一组方程式来表明它是第一个方程式、第二个方程式等等,但现在我需要一组与第一组完全无关的新方程式,我想用字母来标记它。我尝试使用代码

\renewcommand{\theequation}{\alph{equation}}
\begin{equation}
y=x
\end{equation}
\begin{equation}
y=x^2
\end{equation}
\begin{equation}
y=x^3
\end{equation}

但它只是继续(c)和(d)

*我的第一组方程只有 2 个方程

答案1

如果我正确理解了你的问题,你只是错过了计数器的重置equation

\documentclass{article}
\usepackage{amsmath}
\begin{document}
First set of equations:
\begin{align}
a & = b \\
c & = d
\end{align}

\renewcommand{\theequation}{\alph{equation}}
\setcounter{equation}{0}
Second set of equations:
\begin{align}
y & = x \\
y & = x^2 \\
y & = x^3
\end{align}
\end{document}

但是,如果文档中的方程式不止这两个集合,您将如何对它们进行编号?由于仅使用另一种编号方案不能很好地推广到方程式较多的情况,因此我建议改用环境subequations

\documentclass{article}
\usepackage{amsmath}
\begin{document}
First set of equations:
\begin{subequations}
\begin{align}
a & = b \\
c & = d
\end{align}
\end{subequations}

Second set of equations:
\begin{subequations}
\begin{align}
y & = x \\
y & = x^2 \\
y & = x^3
\end{align}
\end{subequations}
\end{document}

相关内容