In the equation above, \Delta_{X{lm}} is taken as one equation by using split environment. I want to align the ranges shown in Eq. 1 which I already did, but I want each range to get its equation numbering as well, that is [\Xi \Theta] should be (1) and [\Theta \Xi] should be (2).
My source code
\documentclass[]{IEEEtran}
\usepackage{amsmath}
\usepackage{amssymb, amsfonts}
\DeclareRobustCommand{\chiup}{{\mathpalette\irchi\relax}}
\newcommand{\irchi}[2]{\raisebox{\depth}{$#1\chi$}}
\begin{document}
\begin{align}
\begin{split}
\Delta{X_{lm}} &= \left \{
\begin{aligned}
&\left[ \thinspace \Xi \quad \Theta \thinspace \right], &\chiup > 0
\\
&\left[ \thinspace \Theta \quad \Xi \thinspace \right], &\chiup < 0
\end{aligned}
\right.
\end{split}
\label{eq:del_Xlm_bnd}
\\
\intertext{where\vspace{0.3\baselineskip}}
\Xi &= \frac{\chiup}{X_{th,kp}}
\label{eq:eq:del_Xlm_bnd_Xi}
\\
\Theta &= \frac{\chiup}{X_{th,kp} - X_{b}}
\label{eq:eq:del_Xlm_bnd_Theta}
\end{align}
\end{document}




numcasescannot be nested insidealignenvironment – Al-Motasem Aldaoudeyeh Jul 21 '18 at 23:19numcasescannot be nested (and it breaks cross-referencing). Even this solution won’t work, becauseempheqbreaks\intertext. – Ruixi Zhang Jul 21 '18 at 23:21