図の挿入トラブル

図の挿入トラブル

図 (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が、コードではそれを削除する必要があります。画像が黒い四角形に置き換えられます。
  • また、画像に を明示的に設定しましたheightが、おそらくドキュメント内でこれを行いたくないと思うので、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}

関連情報