4 つの大きな画像を挿入すると、1 つのシートに収まらないという問題があります (添付の画像と使用されているコードを参照してください)。すべての画像が 1 つのシートに収まらない場合は、次のシートに移動するようにしたいと思います。
どうすればいいでしょうか?ありがとうございます
\begin{figure}
\centering
\subfigure[Intero dominio] {
\includegraphics[width=0.6\textwidth]{\jpgfigspath 2DMeshLontano}
\label{fig:2DMeshLontano}
}
\hspace{0.5cm}
\subfigure[Rotore] {
\includegraphics[width=0.6\textwidth]{\jpgfigspath 2DMeshNormale}
\label{fig:2DMeshNormale}
}
\hspace{0.5cm}
\subfigure[Intorno della pala] {
\includegraphics[width=0.6\textwidth]{\jpgfigspath 2DMeshRavvicinato}
\label{fig:2DMeshRavvicinato}
}
\hspace{0.5cm}
\subfigure[Profilo della pala] {
\includegraphics[width=0.6\textwidth]{\jpgfigspath 2DMeshVicino}
\label{fig:2DMeshVicino}
}
\caption{Griglia di calcolo 2D (vista dall'alto)}
\end{figure}
答え1
以下は、私が使用した非常に長い図形用の 1 つの方法です。
\begin{figure}[!h]
\subfloat[subfigure caption]{\includegraphics[]{fig1.eps}\\
\subfloat[]{\includegraphics[]{fig2.eps}\\
\subfloat[]{\includegraphics[]{fig3.eps}\\
\end{figure}
\begin{figure}[!ht]
\addtocounter{subfigure}{3}
\subfloat[]{\includegraphics[]{fig4.eps}\\
\caption{Figure caption}
\end{figure}
この例では、subfig パッケージを使用します。3 番目の図で図を終了し、次の図用に新しい図環境を開始します。この\addtocounter
コマンドにより、サブ図の番号付けが前の図で中断したところから再開されます。ここでは、最初の図環境に 3 つの図があるため、番号は 3 です。
\\
別の方法としては、偶数番号の図の改行記号 ( ) を削除し、幅を などに設定して、図を隣り合わせに配置する方法があります\includegraphics[width=0.45\textwidth]
。 すると、すべての図が 1 ページに表示されます。