Несколько подрисунков, расположенных на одной странице

Я хотел бы расположить 4 набора из 3 субфигурок на одной странице, как показано на прикрепленном рисунке. Я хочу, чтобы у каждого из 4 наборов субфигурок был свой номер фигуры и подпись. Можно ли разделить страницу на четверти, в которые я мог бы поместить фигуру? введите здесь описание изображения.


person M.Thomas    schedule 07.11.2017    source источник


Ответы (1)


Вы можете разместить свои коллекции субфигурок внутри minipage. У каждого есть несколько \subcaption и свои \caption. Расстояние можно изменить по мере необходимости.

введите здесь описание изображения

\documentclass{article}

\usepackage{graphicx,subcaption}

\begin{document}

\begin{figure}
  \centering
  \begin{minipage}{.48\linewidth}
    \centering
    \subcaptionbox{First top left}
      {\includegraphics[width=\linewidth,height=50pt]{example-image-a}}

    \subcaptionbox{Second top left}
      {\includegraphics[width=\linewidth,height=50pt]{example-image-b}}

    \subcaptionbox{Third top left}
      {\includegraphics[width=\linewidth,height=50pt]{example-image-c}}

    \caption{Top left}
  \end{minipage}\quad
  \begin{minipage}{.48\linewidth}
    \centering
    \subcaptionbox{First top right}
      {\includegraphics[width=\linewidth,height=50pt]{example-image-a}}

    \subcaptionbox{Second top right}
      {\includegraphics[width=\linewidth,height=50pt]{example-image-b}}

    \subcaptionbox{Third top right}
      {\includegraphics[width=\linewidth,height=50pt]{example-image-c}}

    \caption{Top right}
  \end{minipage}

  \bigskip

  \begin{minipage}{.48\linewidth}
    \centering
    \subcaptionbox{First bottom left}
      {\includegraphics[width=\linewidth,height=50pt]{example-image-a}}

    \subcaptionbox{Second bottom left}
      {\includegraphics[width=\linewidth,height=50pt]{example-image-b}}

    \subcaptionbox{Third bottom left}
      {\includegraphics[width=\linewidth,height=50pt]{example-image-c}}

    \caption{Bottom left}
  \end{minipage}\quad
  \begin{minipage}{.48\linewidth}
    \centering
    \subcaptionbox{First bottom right}
      {\includegraphics[width=\linewidth,height=50pt]{example-image-a}}

    \subcaptionbox{Second bottom right}
      {\includegraphics[width=\linewidth,height=50pt]{example-image-b}}

    \subcaptionbox{Third bottom right}
      {\includegraphics[width=\linewidth,height=50pt]{example-image-c}}

    \caption{Bottom right}
  \end{minipage}
\end{figure}

\end{document}
person Werner    schedule 10.11.2017