I know there are a ton of questions about this but I seem to not be able to find want I want. I want to pictures side by side with the picture aligned to the top and the caption to the bottom. I wanted to follow this answer, but the minipage position parameter doesn't seem to work.
MWE:
\begin{figure}[htbp]
\centering
\begin{minipage}[b]{0.6\textwidth}
\includegraphics[width=\textwidth]{example-image-a.pdf}
\end{minipage}%%%
\hfill
\begin{minipage}[b]{0.35\textwidth}
\includegraphics[width=\textwidth]{example-image-a.pdf}
\end{minipage}
\begin{minipage}[t]{0.6\textwidth}
\caption{Caption 1.}
\label{fig1}
\end{minipage}%%%
\hfill
\begin{minipage}[t]{0.35\textwidth}
\caption{Caption 2.}
\label{fig2}
\end{minipage}
\end{figure}
independent of whether I have a b's or t's in the first two minipages.
No matter what I do the second image doesn't want to move up. I have tried adding a vertical space after the second image and that does work but then I have to guess the distance...



floatrowpackage. – Bernard Jun 07 '21 at 14:30