I'm creating a report where several figures are presented.
One place are 6 figures place like this using continuedfloat and subfig:
2X1 one page with caption (a),(b) and fig:1
2X2 next page with caption (c),(d),(e) and (f) and fig:1
Now I want a wrapfigure placed on the next page like this:
1X3 on one page and caption (a),(b) and (c) and fig:2..
But the letters are (g),(h) and (i) and fig:2!!!
So figure number is correct, but letters are not!!!
What to do?
Code: Select all
\documentclass[a4paper,10pt,twoside]{report}
%
%----------------------- start of the preamble ------------------
%
\usepackage{graphicx}
\usepackage[T1]{fontenc}
\usepackage{float}
\usepackage[english]{babel}
\usepackage[small,bf]{caption}
\usepackage{wrapfig}
\usepackage{subfig}
\begin{document}
%
\begin{figure}[H]
\centering
\subfloat[$Z_{p2} N1$]{\includegraphics[width=0.5\textwidth]{5_Constrains/Figures/a/Figure_Cumsum_Acoustic_N1.png}}
\subfloat[$Z_{s2} N1$]{\includegraphics[width=0.5\textwidth]{5_Constrains/Figures/a/Figure_Cumsum_Shear_N1.png}}
\caption{TEXT1.}
\label{fig:known_Impedance}
\end{figure}
%
\newpage
%
\begin{figure}[H]
\ContinuedFloat
\centering
\subfloat[$Z_{p2} N2$]{\includegraphics[width=0.5\textwidth]{5_Constrains/Figures/a/Figure_Cumsum_Acoustic_N2.png}}
\subfloat[$Z_{s2} N2$]{\includegraphics[width=0.5\textwidth]{5_Constrains/Figures/a/Figure_Cumsum_Shear_N2.png}}\\
\subfloat[$Z_{p2} N3$]{\includegraphics[width=0.5\textwidth]{5_Constrains/Figures/a/Figure_Cumsum_Acoustic_N3.png}}
\subfloat[$Z_{s2} N3$]{\includegraphics[width=0.5\textwidth]{5_Constrains/Figures/a/Figure_Cumsum_Shear_N3.png}}
\caption{TEXT2.}
\label{fig:known_Impedance2}
\end{figure}
%
TEXT
%
\newpage
%
\begin{wrapfigure}{i}{0.5\textwidth}
\vspace{-20pt}
\centering
\subfloat[$v_{p2}$]{\includegraphics[width=0.5\textwidth]{5_Constrains/Figures/c/Figure_Omre_known_vp2_N2.png}}\\
\subfloat[$v_{s2}$]{\includegraphics[width=0.5\textwidth]{5_Constrains/Figures/c/Figure_Omre_known_vs2_N2.png}}\\
\subfloat[$\rho_2$]{\includegraphics[width=0.5\textwidth]{5_Constrains/Figures/c/Figure_Omre_known_rho2_N2.png}}
\vspace{-5pt}
\caption{TEXT3}
\label{fig:Omre_known_n2_elastic}
\vspace{-80pt}
\end{wrapfigure}
%
\end{document}