单个方程式有多个标签

单个方程式有多个标签

我有一个等式

y=4x \text{ for } x\in \{1,2\}

并想将其标记为方程 (1-2),以便论文中的下一个方程自动标记为方程 (3)。

我怎样才能做到这一点?

答案1

在此处输入图片描述

\documentclass{article}

\usepackage{amsmath}

\begin{document}

aaa \refstepcounter{equation}
\begin{equation}
  1=0 \tag{\theequation--\the\numexpr\value{equation}+1\relax}
\end{equation}

bbb\refstepcounter{equation}
\begin{equation}
  0 =1
\end{equation}
\end{document}

答案2

如果您不必使用章节、章节、小节等,一个简单而快速的解决方案是\tag对第一个方程使用手动,并对其他方程使用自动枚举。

在此处输入图片描述

\documentclass[a4paper,12pt]{article}
\usepackage{mathtools}
\addtocounter{equation}{2}
\begin{document}
\begin{equation*}
x^2+y^2=1 \tag{1-2}
\end{equation*}
\begin{equation}
x^2+y^2=4
\end{equation}
\begin{equation}
\cos x +\sin x =1
\end{equation}
\end{document} 

相关内容