For some reason I'm not able to have a top alignment of figures using subfigure and the environmental option [t]. I have search the internet for solutions and found them pretty complex for such a simple and general problem... What is the simple solution?
\documentclass[11pt]{article}
\usepackage[draft]{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\begin{document}
\begin{figure}[h!]
\centering
\begin{subfigure}[t]{.49\linewidth}
\centering
\includegraphics[width=1\textwidth]{calCurve.pdf}
\caption{Caption 1}
\end{subfigure}%
\begin{subfigure}[t]{.49\linewidth}
\centering
\includegraphics[scale=0.7]{anova.pdf}
\caption{Caption 2}
\end{subfigure}%
\end{figure}
\end{document}


\subcaptionbox-command in section 4/page 6. – henry Apr 27 '15 at 09:50subcaptionpackage. – Mico Apr 27 '15 at 23:07subcaptionpackage when thedraftordemooptions are set. – Mico Apr 27 '15 at 23:08figure*environment – Werner Apr 28 '15 at 00:14