[Tex/LaTex] Cases environment without the brace

casesequationsvertical alignment

I want to vertically align one equation against two, similar to the cases environment but without the brace: e.g. similar environment to:

withbraces

There must be another solution to the alignment solution like Case equation without curly brace – I'd like to label it as a single equation.

Best Answer

There's no need to create a special environment; a simple array environment will do the job.

enter image description here

\documentclass{article}
\begin{document}
\[
y = mx_{ij}\  
\begin{array}{l}
i = 1,2,\dots,n\\
j = 1,2,\dots,n
\end{array}
\]
\end{document}

To make this a numbered equation environment, simply replace \[ and \] with \begin{equation} and \end{equation}, respectively.

Related Question