Why is there so much vertical space between the subsection heading and the equation in the following example. How do I get rid of it?
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\section{Title}
\subsection{Subtitle}
\begin{flalign*}
a+b=8 &&\\
c=2 &&
\end{flalign*}
\end{document}

Secondly, why is it aligned at the equals sign, even without &=? I want both of the lines to be flushed to the left.



8and2take up the same space and the equations are right aligned since there is no&until the end of the line, so then the end of the line is specified as the alignment point. – Peter Grill Nov 10 '12 at 23:18flalign*?\subsection{Subtitle}$a+b=8$\\$c=2$would do as well. Can you be more explicit about why you need such a layout? – egreg Nov 10 '12 at 23:19flalign. With my second question I was just wondering why my example wasn't flushed to the very left (the$were at the wrong places). – user21760 Nov 10 '12 at 23:25