Math & Science ⇒ Subequations
Subequations
How do I write equation numbering style
(1a)
(2a)
(2b)
(3a)
(3b)
(1b)
(4)
(4a)
(4b)?
-------------------------------------
\begin{subequations}\label{1}
\begin{equation}\label{1a}
\end{equation}
\end{subequations}
\begin{subequations}\label{2}
\begin{equation}\label{2a}
\end{equation}
\begin{equation}\label{2b}
\end{equation}
\end{subequations}
\begin{subequations}\label{3}
\begin{equation}\label{3a}
\end{equation}
\begin{equation}\label{3b}
\end{equation}
\end{subequations}
\begin{subequations}
\begin{equation}\label{1b}
\end{equation}
\end{subequations}
\begin{equation}\label{4}
\end{equation}
etc
Don't work (1b).
Tkank you very much.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Subequations
Code: Select all
\begin{subequations}\label{1}
\begin{equation}\label{1a}
\end{equation}
\end{subequations}
\begin{subequations}\label{2}
\begin{equation}\label{2a}
\end{equation}
\begin{equation}\label{2b}
\end{equation}
\end{subequations}
\begin{subequations}\label{3}
\begin{equation}\label{3a}
\end{equation}
\begin{equation}\label{3b}
\end{equation}
\end{subequations}
\setcounter{equation}{0}
\begin{subequations}
\begin{equation}\setcounter{equation}{2}\label{1b}
\end{equation}
\end{subequations}
\begin{equation}\setcounter{equation}{4}\label{4}
\end{equation}
Eimund Smestad
Re: Subequations
But, there is a way to not use the instruction "\setcounter"?
Thank you very much.
Re: Subequations
Eimund