Ich möchte Abbildungen (9 Zeilen, 2 Spalten) so einfügen, dass in der linken Spalte 9 Abbildungen vorhanden sind und die Überschriften von a, b, c bis i beginnen. Auf derselben Seite kann ich in der rechten Spalte 9 Abbildungen einfügen und ihre Überschriften sollten sich von a bis i wiederholen. Wenn jemand weiß, wie das geht, bitte helfen. Ich verwende diesen Code.
\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}
Wenn Sie für jede Abbildung eine Bildunterschrift hinzufügen möchten, verwenden Sie eine ähnliche Methode. Das funktioniert.
Antwort1
Soweit ich das verstehe, ist das Ihr Ziel. Einige Dinge, die Sie beachten sollten:
- Auf jedes Bild folgt ein
\caption{}
, das die Nummer generiert. - Hier habe ich die
demo
Option für dasgraphicx
Paket verwendet, aber Sie müssen diese in Ihrem Code entfernen. Sie ersetzt Bilder durch schwarze Rechtecke. - Ich habe das
height
Bild auch explizit festgelegt, aber Sie möchten das wahrscheinlich nicht in Ihrem Dokument tun, also entfernen Sie esheight=1cm
aus allen\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}