Проблема со вставкой рисунка

Проблема со вставкой рисунка

Я хочу вставить цифры (9 строк, 2 столбца) таким образом, чтобы в левом столбце число цифр было равно 9, а их подписи начинались с букв a, b, c и до i, а на той же странице в правом столбце я могу вставить 9 цифр, а их подписи повторялись бы от a до i. Если кто-нибудь знает, как это сделать. Пожалуйста, помогите. Я использую этот код.

\begin{document}

\begin{figure*}[h!]
\begin{minipage}{0.5\linewidth}
 \begin{subfigure}{\linewidth}
 \includegraphics[width=\textwidth]{1}
 \includegraphics[width=\textwidth]{2}
\includegraphics[width=\textwidth]{3}
\includegraphics[width=\textwidth]{4}
\includegraphics[width=\textwidth]{5}
\includegraphics[width=\textwidth]{6}
\includegraphics[width=\textwidth]{7}
\includegraphics[width=\textwidth]{8}
\includegraphics[width=\textwidth]{9}
 \end{subfigure}
 \end{minipage}
  \begin{minipage}{0.5\linewidth}
 \begin{subfigure}{\linewidth}
 \includegraphics[width=\textwidth]{1}
 \includegraphics[width=\textwidth]{2}
\includegraphics[width=\textwidth]{3}
\includegraphics[width=\textwidth]{4}
\includegraphics[width=\textwidth]{5}
\includegraphics[width=\textwidth]{6}
\includegraphics[width=\textwidth]{7}
\includegraphics[width=\textwidth]{8}
\includegraphics[width=\textwidth]{9}
 \end{subfigure}
 \end{minipage}
 \caption{Steady base flow, $Re=100,\; Ar=1.0$}
 \label{Fig:Steady_flow_Re100}
 \end{figure*}
\end{document}

Если вы хотите добавить подписи к каждому рисунку, используйте аналогичный способ подписи. Это сработает.

решение1

Насколько я понимаю, это то, что вам нужно. Некоторые вещи, которые следует отметить:

  • За каждым изображением следует символ \caption{}, который и генерирует число.
  • Здесь я использовал demoопцию для graphicxпакета, но вы должны удалить это в своем коде. Он заменяет изображения черными прямоугольниками.
  • Я также явно задал heightfor image, но вы, вероятно, не захотите делать это в своем документе, поэтому удалите height=1cmиз всех \includegraphics.

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

\documentclass{article}
\usepackage[demo]{graphicx} %remove demo in your document
\usepackage{subcaption}
\begin{document}
\begin{figure*}[h!]
\begin{minipage}[t]{0.48\textwidth}
\begin{subfigure}{\linewidth}
 \includegraphics[width=\textwidth,height=1cm]{1} %remove height=1cm in your document
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{2}
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{3}
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{4}
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{5}
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{6}
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{7}
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{8}
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{9}
 \caption{}
\end{subfigure}
\caption{Steady base flow, $Re=100,\; Ar=1.0$}
\label{Fig:Steady_flow_Re100}
\end{minipage}
\begin{minipage}[t]{0.48\textwidth}
\begin{subfigure}{\linewidth}
 \includegraphics[width=\textwidth,height=1cm]{1} %remove height=1cm in your document
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{2}
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{3}
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{4}
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{5}
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{6}
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{7}
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{8}
 \caption{}

 \includegraphics[width=\textwidth,height=1cm]{9}
 \caption{}
\end{subfigure}
\caption{Something else}
\label{Fig:something}
\end{minipage}
\end{figure*}
\end{document}

Связанный контент