برای این کار میتوانید از محیط subequations
از بسته amsmath
استفاده کنید. مثال زیر را ببینید:
\documentclass{article}
\usepackage{amsmath}
\usepackage{lipsum}
\begin{document}
\section{Persian \LaTeX}
\lipsum[1]
We have an equation here
\begin{equation}
f(x)=x^{2}+y^{2}
\end{equation}
\lipsum[2]
\begin{equation}
y=(x+y)^{2}
\end{equation}
And there you go:
\begin{subequations}
\begin{align}
y&=ax+b\\
r^{2}&=x^{2}+y^{2}
\end{align}
\end{subequations}
\end{document}