Título al lado de la imagen en la minipágina

Título al lado de la imagen en la minipágina

Lo que estoy tratando de lograr:

Tenga dos imágenes en una página, una imagen en la mitad superior de la página y la otra en la mitad inferior. He logrado hacer esto mediante:

\vbox{
  \begin{minipage}[t][0.45\textheight][t]{\textwidth}
    \centering
    \includegraphics[height=0.5\textheight]{image1}
  \end{minipage}

  \nointerlineskip
  \begin{minipage}[b][0.45\textheight][t]{\textwidth}
    \vspace{0.4in}
    \centering
    \includegraphics[height=0.45\textheight]{image2}
  \end{minipage}
}

Pero me gustaría tener un título al lado de la imagen para que no ocupe demasiado espacio. Lo he intentado de varias maneras pero siempre aparece el error "no en modo par externo".

¿Alguna forma de hacer esto?

Respuesta1

Una opción usando \captionofdesde elcaptionpaquete (el capt-ofpaquete también ofrece esta característica) para proporcionar los subtítulos:

\documentclass{article}
\usepackage{caption}
\usepackage{graphicx}

\begin{document}

\clearpage
\noindent\begin{minipage}[t][0.45\textheight][t]{.45\textwidth}
  \centering
  \includegraphics[height=0.5\textheight,width=\linewidth]{example-image-a}
\end{minipage}\hfill
\begin{minipage}[b]{.45\textwidth}
\captionof{figure}{here's the caption for the first figure and some more text for the example}
\label{fig:testa}
\end{minipage}
\vfill

\noindent\begin{minipage}[t][0.45\textheight][t]{.45\textwidth}
  \centering
  \includegraphics[height=0.45\textheight,width=\linewidth]{example-image-b}
\end{minipage}\hfill
\begin{minipage}[b]{.45\textwidth}
\captionof{figure}{here's the caption for the second figure and some more text for the example}
\label{fig:testb}
\end{minipage}
\clearpage

\end{document}

ingrese la descripción de la imagen aquí

Ajuste las longitudes y alineaciones utilizadas según sus necesidades.

información relacionada