I have a figure with two subfigures of different heights. I'd like the subcaptions to align at the bottom. This could probably be done with some kind of alignment stuff, or by creating a phantom '[RTR]' branch of the left subfigure's tree. I'm unsure how to do either of these.
\usepackage[linguistics]{forest}
\begin{figure}
\centering
\begin{subfigure}[t]{.45\textwidth}
\centering
\begin{forest}
[, GP1, s sep=2em
[\large{è} [open [close [rtr]]]]
]
\end{forest}
\caption{left caption}
\end{subfigure}%
\hfill
\begin{subfigure}[t]{.4\textwidth}
\centering
\begin{forest}
[, GP1, s sep=2em
[\large{ɛ́ɛ̀} [open [close [rtr, calign=child, calign primary child=2 [{[RTR]}] ]]]]
]
\end{forest}}
\caption{right caption}
\end{subfigure}%
\caption{Figure caption}
\end{figure}



floatrowcan do this. – cfr Oct 01 '19 at 17:05