Redéfinition de l'environnement « cases »
Dans `latex.ltx`, je trouve :
    \def\cases#1{\left\{\,\vcenter{\normalbaselines\m@th
        \ialign{$##\hfil$&\quad{##}\hfil\crcr#1\crcr}}\right.}
(auquel, pour tout dire, je ne comprends pas grand chose). chose).
Que faut-il faire pour que cet environnement se comporte comme :
    \left\{\begin{aligned}& a \\ & b \\ &c \end{aligned}\right.
En fait, je pourrais tout aussi utiliser l'environnement `aligned` mais je ne veux pas indiquer les `&`.
A À titre de comparaison:
comparaison :
    \begin{equation}
    \begin{cases}
    \nabla_z \mathcal L(\bar z,\lambda,\mu) = Q&\\ 
    h_i^T \bar z - g_i = 0,&\forall i \in \mathcal A(\bar z) \\ 
    h_i^T \bar z - g_i \geq 0,&\forall i \in \mathcal I \setminus\mathcal A(\bar z) \\ 
    \lambda \geq 0,&\forall i \in \mathcal I \cap \mathcal A(\bar z).
    \end{cases}
    \end{equation}
    
    \begin{equation}
    \left\{\begin{aligned}
    &\nabla_z \mathcal L(\bar z,\lambda,\mu) = Q&\\ 
    &h_i^T \bar z - g_i = 0,&&\forall i \in \mathcal A(\bar z) \\ 
    &h_i^T \bar z - g_i \geq 0,&&\forall i \in \mathcal I \setminus\mathcal A(\bar z) \\ 
    &\lambda \geq 0,&&\forall i \in \mathcal I \cap \mathcal A(\bar z).
    \end{aligned}\right.
    \end{equation}