| x x x |
| x x x | (2)
| x x x | (3)
If I use the equation environment with an array, then I will just get one number for the whole matrix. If I use an environment like align, there seems to be no way to get the matrix delimiters.
I have tried doing it manually with some code like this:
Code: Select all
\addtocounter{equation}{1}\newcounter{eqn}
\[C(\Gamma)=\left[\begin{array}{3}x_1&x_2&x_3\\
y_1&y_2&y_3\\
z_1&z_2&z_3
\end{array}\right]
\begin{array}{l}\\
(\theequation)\setcounter{eqn}{\theequation}\addtocounter{equation}{1}\\
(\theequation)\\
\end{array}\]
However, this is not a satisfactory solution, and does not work when I introduce chapters because then the line numbers become of the form 2.13 which are not incremented so easily.
If there is an environment which will do this for me, please let me know!
Thanks.