Subfigs of a figure on multiple pages

73,551

This may sound odd, but why not put them in something like supertab to make them span several pages? You would get rid of the floating object "figure" which has to placed on one page completely - according to my knowledge.

Share:
73,551
Admin
Author by

Admin

Updated on July 09, 2022

Comments

  • Admin
    Admin almost 2 years

    I am facing problem of stacking many figures

    The problem is the stack figure is overriding the page dimension vertically and placing all the figure in one page and not changing the page as the limitation of page is reached.

    How can page be changed while stacking all the figures.

    \usepackage{subfig}
    \usepackage{float}
    \begin{figure}[hp]
    \centering
    \subfloat[Fig1]{\label{fig:1}\includegraphics[width=0.48\textwidth]{fig1}}
    \subfloat[Fig2]{\label{fig:2}\includegraphics[width=0.48\textwidth]{fig2}}
    \subfloat[Fig3]{\label{fig:3}\includegraphics[width=0.48\textwidth]{fig3}}
    \subfloat[Fig4]{\label{fig:4}\includegraphics[width=0.48\textwidth]{fig4}}
    \subfloat[Fig5]{\label{fig:5}\includegraphics[width=0.48\textwidth]{fig5}}
    \subfloat[Fig6]{\label{fig:6}\includegraphics[width=0.48\textwidth]{fig6}}
    \caption{........}
    \label{..........}
    \end{figure}
    

    I shall be very thankfull for your kind help.