I have a figure and text inside a minipage inside an enumerate. I would like align the text and the item number and top-align the figure and the text.
Top top-align figures and text in the past I have used the \vspace{0pt} solution mentioned in Aligning image and text on top, with minipages but this fails to align with the item number.
This question seems relevant: Alignment of item number in list containing a minipage I have tried and failed to adapt egreg's solution. I would also prefer not do define a whole new minipage environment, if possible.
\documentclass{article}
\begin{document}
\begin{enumerate}
\item
\begin{minipage}[t]{0.2\linewidth}
\vspace{0pt}
\rule{\textwidth}{3cm}
\end{minipage}\hfill
\begin{minipage}[t]{0.7\linewidth}
\vspace{0pt}
\paragraph{Ludwig Boltzmann (1844~V1906)}\par
He was an Austrian physicist famous for his founding contributions in the
fields of statistical mechanics and statistical thermodynamics. He was
one of the most important advocates for atomic theory at a time when that
scientific model was still highly controversial.
\end{minipage}
\item
\item
\end{enumerate}
\end{document}
which produces


\parafter the\paragraphthat doesn't appear to be doing anything. What was your intention? – Geoff Pointer Sep 06 '17 at 23:10