I want my subequations starting with number (9u).
How can I do this?
I want my subequations starting with number (9u).
How can I do this?
Not sure why you would do it, but here it is.
\documentclass{article}
\usepackage{amsmath}
\newcounter{storesubequations}
\begin{document}
\begin{equation}
y
\end{equation}
\begin{subequations}
\begin{align}
a&=b \
c&=d
\end{align}%
\setcounter{storesubequations}{\value{equation}}%
\end{subequations}
\addtocounter{equation}{-1}
\begin{subequations}\setcounter{equation}{\value{storesubequations}}
\begin{align}
e&=f \
g&=h
\end{align}
\end{subequations}
\begin{equation}
y
\end{equation}
\end{document}
subequations: it can span several pages. You've possibly asked the wrong question: maybe you need to split a longalignor similar environment across pages. – egreg Oct 15 '20 at 23:08\displaybreak? – egreg Oct 15 '20 at 23:11