我遇到的問題是,插入 4 張大圖像時,它們不適合放在一張紙中(請參閱所附圖像和使用的程式碼)。我希望,如果所有圖像不適合一張紙,它們會轉到下一張紙。
我能怎麼做?謝謝
\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
這是我使用過的一種超長數字的方法:
\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 套件。在第三個圖形處結束該圖形,並為下一個圖形開始一個新的圖形環境。此\addtocounter
指令可確保子圖編號從上圖停止的位置恢復。這裡,數字是三,因為第一個數字環境中有三個數字。
\\
另一種方法是透過刪除偶數數字的換行符 () 並將寬度設為(例如),使數字彼此並排\includegraphics[width=0.45\textwidth]
。然後你就可以在一頁上看到所有的數字了。