There are some threads about subfigures and alignment, but I could not find a solution for my problem. I want to have two figures side by side, both with their own capture (a and b) and below one capture for both. Using
\documentclass{article}
\usepackage{subcaption}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\centering
\begin{subfigure}[b]{.49\textwidth}
\centering
\includegraphics[width=6cm]{example-image-a}
\caption{Caption describing fig a}
\label{fig:figure_a}
\end{subfigure}\hfill%
\begin{subfigure}[b]{.49\textwidth}
\centering
\includegraphics[width=7cm]{example-image-b}
\caption{Caption describing fig b}
\label{fig:figure_b}
\end{subfigure}
\caption{Caption for both images}
\label{fig:Filter_L_LCL}
\end{figure}
\end{document}
and using my graphics I get this, so it is quite the similar situation:
Exactly what I want, expect the image alignment. I'd like to have them top-aligned and captions bottom-aligned (the image size must not be changed since image and document font size match). How can this be done? Any solution without manually shifting?




\documentclassand ending at\end{document}providing all we need to compile it and reproduce your issue/error, but nothing more. For images you should useexample-imagein\includegraphics. – Skillmon Sep 05 '17 at 18:15