Graphics, Figures & Tablessubfigures through multiple pages - subfloat problem

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
MartinM
Posts: 2
Joined: Tue Feb 03, 2015 3:43 pm

subfigures through multiple pages - subfloat problem

Post by MartinM »

Hi guys,

I have a question.

I have a figure with four subfigures, which have to be on two pages. Each of them has to have subcaption ((a) blabla, ...). And they have to have together just one caption.

I already use usepackage{subfigure} so i cannot use usepackage{subcaption}

Any ideas?

Thnank You

Martin

Recommended reading 2024:

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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

MartinM
Posts: 2
Joined: Tue Feb 03, 2015 3:43 pm

subfigures through multiple pages - subfloat problem

Post by MartinM »

More info:

i try to use this command

Code: Select all

\usepackage{subfigure}
\usepackage{float}

\begin{figure}[H]
\centering
\subfloat[][1]{\includegraphics[width=0.45\textwidth]{1.png}}
\quad
\subfloat[][2]{\includegraphics[width=0.45\textwidth]{2.png}}
\end{figure}

\begin{figure}[H]
\ContinuedFloat
\centering
\subfloat[][3]{\includegraphics[width=0.45\textwidth]{3.png}}
\quad
\subfloat[][4]{\includegraphics[width=0.45\textwidth]{4.png}}
\caption{Four figures}
\end{figure}
The problem is with the subcaption. Instead of form (a)1 and so on. It just writes next to the figure [][1] and so on.

Any ideas?
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

subfigures through multiple pages - subfloat problem

Post by Johannes_B »

Hi and welcome,

can you extend your code snippet to make it compilable? Package mwe is very helpful for this and it saves us time trying to reproduce what you are describing with words.

On the other hand, and i think you don't want to hear this, package subfigure is obsolet for ten years and has been replaced by package subfig. But subfig as well has trouble with hyperref, so subcaption would be the road to take.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply