I am trying to number two equations at the same line as subequation.
My problem seems to be due to case environment, since if i comment the case environment, the problem disappears.
Here is a short example of my code:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{subequations}
\begin{tabular}{@{}*{2}{m{0.4\linewidth}}@{}}
\begin{align}
\Theta[n] = \begin{cases}
0, & n < 0, \\
1, & n \ge 0,
\end{cases}
\end{align} &
\begin{align}
m_{ij}^{det} = \left|\Delta_{ij}\right|
\end{align}
\end{tabular}
\end{subequations}
\end{document}
alignand notequation? – egreg Nov 30 '11 at 15:47arraypackage, which is missing.) – Torbjørn T. Nov 30 '11 at 15:50