I want to redefine an environment that include the environment alignat*.
I discovered that I can't do that :
\newenvironment{variables}
{ \paragraph{Variables :}
\begin{alignat*}{2} }
{ \end{endalignat*} }
so the solution I found is to use the command \alignat but this way, the equations are numebered and I won't.
\newenvironment{variables}
{ \paragraph{Variables :}
\alignat*{2} }
{ \endalignat* }
So how can I do to include \alignat* in my new environment keeping the star ?
\expandaftercommand. If we don't use it, what happens ? – Saroupille Oct 11 '14 at 11:11\csname endalignat*\endcsnameone can use more simply\endalign. – egreg Oct 11 '14 at 22:25