So far I tried two Ansatzes using (i) minipage and (ii) tabular environment:
%(i) minipage
\begin{figure}[htp]
\begin{minipage}[t]{0.5\textwidth}
\vspace{0pt}
\includegraphics{figures/general_model/dummy}
\end{minipage}%
\hfill
\begin{minipage}[t]{0.45\textwidth}
\vspace{0pt}
\caption{ This is the caption to my dummy figure. It is very informative. I like rainy weather. I am too lazy to include lorem lipsum.} \label{fig:segments}
\end{minipage}%
\end{figure}
and
%(ii) tabular
\begin{figure}[htp]
\begin{tabular}{p{0.5\textwidth} p{0.45\textwidth}}
\vspace{0pt}
\includegraphics{figures/general_model/dummy}
&
\vspace{0pt}
\caption{ This is the caption to my dummy figure. It is very informative. I like rainy weather. I am too lazy to include lorem lipsum.}
\end{tabular}
\end{figure}
Both yield the same behavior:
I have been drawing the red dotted line manually to mark the top edge of the image.
How can I align the caption with the top edge of the image like so:
I would prefer answers using tabular or minipage and avoid including new libraries. Thanks in advance!





\abovecaptionskipmoving your caption downwards. – Skillmon Oct 17 '21 at 13:09