Is it possible to have subfigure (a), (b), (c) [Page 1], and (c), (d) [page 2] with only one caption?
This is another question extended from subfigure in multiple page
I want to have:
[Page 1]
(a)
(b)
(c)
[Page 2]
(d)
(e)
Figure 1: Show the process
and not:
[Page 1]
(a)
(b)
(c)
Figure 1: Show the process --> Delete this
[Page 2]
(d)
(e)
Figure 1: Show the process (con't)
My full MWE:
\documentclass{book}
\usepackage[most]{tcolorbox}
% \usepackage[demo]{graphicx}
\usepackage{caption}
\usepackage[list=true]{subcaption}
\usepackage{tocloft}
\renewcommand{\cfttoctitlefont}{\Huge \bfseries \sffamily}
\setcounter{lofdepth}{2}
\begin{document}
\listoffigures
\chapter{One}
\section{One}
\begin{figure}[!b]
\centering
\begin{subfigure}[b]{0.4\textwidth}
\includegraphics[width=\textwidth]{example-image}
\subcaption{$Q^{*}$ values for arm 1}
\label{fig:arm1}
\end{subfigure}
%
\begin{subfigure}[b]{0.4\textwidth}
\includegraphics[width=\textwidth]{example-image}
\subcaption{$Q^{*}$ values for arm 2}
\label{fig:arm2}
\end{subfigure}
\begin{subfigure}[b]{0.4\textwidth}
\includegraphics[width=\textwidth]{example-image}
\subcaption{$Q^{*}$ values for arm 3}
\label{fig:arm2}
\end{subfigure}
\caption{$Q^{*}$ values for different arms}
\end{figure}
%
\begin{figure}[htb]\ContinuedFloat
\centering
\begin{subfigure}[b]{0.6\textwidth}
\includegraphics[width=\textwidth]{example-image}
\subcaption{$Q^{*}$ values for arm 4}
\label{fig:arm3}
\end{subfigure}
%
\begin{subfigure}[b]{0.6\textwidth}
\includegraphics[width=\textwidth]{example-image}
\subcaption{$Q^{*}$ values for arm 5}
\label{fig:arm4}
\end{subfigure}
\caption{$Q^{*}$ values for different arms}
\label{fig:arms}
\end{figure}
\end{document}
The reason is that so that List of Figure looks better without 2 caption.





\end figure.....thanks a lot for your response. It works – aan Jan 02 '20 at 02:41