I have Equations 11, 12, 13 and so on. I want the next equations to be 14a and 14b, but the one after should again be 15, i.e., keep the ordering. I know how to tag equations, but then the equation after 14b would become 14 again. Here's a ME:
\documentclass{revtex4-1}
\usepackage{amsmath}
\begin{document}
\begin{widetext}% I need this widetext thing.
\begin{subequations}
\begin{equation}
1 = 1
\end{equation}
\end{widetext}
The above equation should have (14a) as a label. Now come the next equation which should have label 14b. And the one following that should have label (15).
\begin{widetext}
\begin{equation}
\sin x = 1
\end{equation}
\end{subequations}
\end{widetext}
Now next equations should have a label (15).
\end{document}
subequationsenvironment from the packageamsmath? I think it can help you with what you need. – yo' Jun 04 '15 at 20:13subequationsbefore the paragraph containing equation 14a and end it after the paragraph containing equation 14b. – egreg Jun 04 '15 at 20:16