Graphics, Figures & TablesSubfigures to cover multiple pages?

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
lepagano
Posts: 12
Joined: Tue Dec 22, 2009 1:42 am

Subfigures to cover multiple pages?

Post by lepagano »

Hello all,

I have a figures with 4-5 subfigures inside that I would like to be spread over 2-3 pages. While I see that \ContinuedFloat might be the way to go, it doesn't do anything to my subfigure placement. Any ideas?

I did add the \usepackage{caption} which I am assuming is the caption package needed to run \ContinuedFloat...but nothing. So can someone go into detail as to how to fix the problem where I have 2 subfigures per page that are properly labeled within the List of Figures??

Thank you so much!

Code: Select all

% Preview source code for paragraph 301

\begin{center}
%
\begin{figure}
\begin{centering}
\subfloat[\label{fig:12-UTC,-09-1}12 UTC 09 June]{\includegraphics[bb=0bp 225bp 612bp 675bp,clip,width=3.25in,height=2.25in]{E:/Onslow/Analysis/20080609/Domain1_20080609_analysis/WRF/20080609_surface_blacklines_d2/wrfout_d02_2008-06-09_12%3A00%3A00\lyxdot ps0001}}\subfloat[\label{fig:21-UTC,-09-1}21 UTC 09 June]{\includegraphics[bb=0bp 225bp 612bp 675bp,clip,width=3.25in,height=2.25in]{E:/Onslow/Analysis/20080609/Domain1_20080609_analysis/WRF/20080609_surface_blacklines_d2/wrfout_d02_2008-06-09_21%3A00%3A00\lyxdot ps0001}}
\par\end{centering}

\begin{centering}
\subfloat[\label{fig:12-UTC,-10-1}12 UTC 10 June]{\includegraphics[bb=0bp 225bp 612bp 675bp,clip,width=3.25in,height=2.25in]{E:/Onslow/Analysis/20080609/Domain1_20080609_analysis/WRF/20080609_surface_blacklines_d2/wrfout_d02_2008-06-10_12%3A00%3A00\lyxdot ps0001}}\subfloat[\label{fig:21-UTC,-10-1}21 UTC 10 June]{\includegraphics[bb=0bp 225bp 612bp 675bp,clip,width=3.25in,height=2.25in]{E:/Onslow/Analysis/20080609/Domain1_20080609_analysis/WRF/20080609_surface_blacklines_d2/wrfout_d02_2008-06-10_21%3A00%3A00\lyxdot ps0001}}
\par\end{centering}

\centering{}\subfloat[\label{fig:12-UTC,-11-1}12 UTC 11 June]{\includegraphics[bb=0bp 165bp 612bp 720bp,clip,width=3.25in,height=2.25in]{E:/Onslow/Analysis/20080609/Domain1_20080609_analysis/WRF/20080609_surface_blacklines_d2/wrfout_d02_2008-06-11_12%3A00%3A00\lyxdot ps0001}}\caption{\label{fig:Surface-winds,-temperature-1}WRF 4 km simulation of surface
winds (kts), temperature (F) and pressure (hPa). }

\end{figure}

\par\end{center}
Thanks.. Lara

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

php1ic
Posts: 192
Joined: Wed Jan 28, 2009 8:17 pm

Subfigures to cover multiple pages?

Post by php1ic »

I'm not exactly sure what you mean by "properly labeled within the list of figures", but the code below seems to do something similar to what you want.

Code: Select all

\documentclass[a4paper]{article}

\usepackage{subfig}
\usepackage{graphicx}

\begin{document}

\listoffigures

%--Start of multi-page subfigure
\begin{figure}[thbp]
\centering
\subfloat[one]{\includegraphics[width=0.75\textwidth]{figure}}
\subfloat[two]{\includegraphics[width=0.75\textwidth]{figure}}
\caption[Many]{load of figures}
\end{figure}

\begin{figure}[thbp]
\ContinuedFloat
\centering
\subfloat[two]{\includegraphics[width=0.75\textwidth]{figure}}
\caption[]{load of figures}
\end{figure}
%--------------------------------

%--Back to a 'normal' figure
\begin{figure}[thb]
\centering
\includegraphics[width=0.75\textwidth]{figure}
\caption[Single]{Single figure}
\end{figure}

\end{document}
Post Reply