Is it possible to typeset a matrix of four left-aligned equations using the subequations environment? The only thing I am able to get is
Code: Select all
[looong 1st equation] [short note on 1st eqn] (1a)
[short 2nd eqn] [longer note on 2nd equation] (1b)
Code: Select all
[looong 1st equation] [short note on 1st eqn] (1a)
[short 3rd eqn] [longer note on 2nd equation] (1b)
Code: Select all
\documentclass[12pt,a4paper,english,fleqn]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{amsmath}
\begin{document}
\begin{subequations}
\begin{align}
looong 1st equation & \qquad short note on 1st eqn\\
short 3rd eqn & \qquad longer note on 2nd equation
\end{align}
\end{subequations}
\end{document}
Any help would be much appreciated.
nvx