Using the amsmath environment, I'd like to create a short-cut for
\begin{equation*}
\begin{split}
...
\end{split}
\end{equation*}
But saying
\newenvironment{eqs}
{\begin{equation*}\begin{split}}
{\end{split}\end{equation*}}
and using it with
\begin{eqs}
...
\end{eqs}
produces the error
! LaTeX Error: \begin{split} on input line 67 ended by \end{eqs}.
However, using \newcommand works — but \eqs{...} over several lines looks a bit weird:
\newcommand{\eqs}[1]{
{\begin{equation*}\begin{split}{#1}\end{split}\end{equation*}}}
% ...
\eqs{
...
...}
Is it possible to get this to work with a new environment, or are there better ways to achieve something equivalent?
align*environment? – Bernard Oct 07 '15 at 23:42