我有一个等式
y=4x \text{ for } x\in \{1,2\}
并想将其标记为方程 (1-2),以便论文中的下一个方程自动标记为方程 (3)。
我怎样才能做到这一点?
答案1
答案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}