I often use a minipage to fill up some space, for example in "beamer" presentations. This might look as follows:
\includegraphics[totalheight=.35\paperheight]{figure}
\begin{minipage}[b][.35\paperheight][t]{.55\linewidth}
Minipage content here
\end{minipage}
I now wonder whether there is a way to automatically determine the minipage's width so that it fills all the space to the right margin.
I understand that I could do the same with tabularx, and wrap the minipage into the 'X'-column. However, I wonder whether there is a way to do that directly. It might be useful also in other cases.
