The amsmath
package provides the split
environment. You can use a split
environment inside an align
environment or inside an equation
environment; a little example:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
\begin{split}
a &= x_{ij} \\
b_j &= y_j
\end{split}
\end{align}
\end{document}

The "proper" way to do this would, I suppose, be to turn on the numbering of the equations you want to number. You can do this by right clicking the equation and selecting Number this formula. There is also a keyboard shortcut, Alt + M N (hold down Alt, press M, release both, press N), which will work if the cursor is inside in equation.
Of course this is tedious work if you have a lot of equations, so it is better to number as you go. Either by adding a normal displayed equation and numbering as mentioned above, or inserting a numbered equation directly, with Insert --> Math --> Numbered formula.
This is also quite tedious, Ctrl+Shift+M is much easier. What one can do is to modify this shortcut to insert a numbered formula instead, or add a new shortcut for this purpose. Changing keyboard shortcuts are done in Tools --> Preferences --> Editing --> Shortcuts, see e.g. Shortcuts for Lemma, Claim, Theorem etc for details. A function you can use for such a shortcut is
command-sequence math-mode on; math-mutate equation;math-number-toggle
Again though, this doesn't help if one already has written the entire document with unnumbered equations. Then the trick mentioned in the LyX wiki, that you seem to have found, is more convenient: go to Document --> Settings --> LyX preamble and add the following two lines:
\renewcommand\[{\begin{equation}}
\renewcommand\]{\end{equation}}
This won't add numbering of the equations within LyX, but in the PDF they will be numbered.
Best Answer
You should load the
amsmath
package (if you don't do so already) and use its\tag
macro to assign whatever number or symbol you like to a given equation. Cross-references to such equations can be made via the usual\label
--\ref
(or\eqref
) mechanism.Compile the example code twice so that LaTeX can resolve the cross-reference.