Graphics, Figures & Tables ⇒ subfigures through multiple pages - subfloat problem
subfigures through multiple pages - subfloat problem
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
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
subfigures through multiple pages - subfloat problem
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}
Any ideas?
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
subfigures through multiple pages - subfloat problem
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.