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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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.