How to have subfigure listed in List of Figure like below:
I using a simple MWE shown below is working well.
\documentclass{book}
\usepackage[demo]{graphicx}
\usepackage{caption}
\usepackage[list=true]{subcaption}
\begin{document}
\listoffigures
\chapter{One}
\section{One}
\begin{figure}[!b]
\centering
\begin{subfigure}[b]{0.1\textwidth}
\includegraphics[width=\textwidth]{example-image}
\subcaption{$Q^{*}$ values for arm 1}
\label{fig:arm1}
\end{subfigure}
%
\begin{subfigure}[b]{0.1\textwidth}
\includegraphics[width=\textwidth]{example-image}
\subcaption{$Q^{*}$ values for arm 2}
\label{fig:arm2}
\end{subfigure}
\begin{subfigure}[b]{0.1\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 (cont.)}
\label{fig:arms}
\end{figure}
\end{document}
But, when I copy to a template template
By adding
\usepackage[demo]{graphicx}
\usepackage[hypcap=false]{caption}
\usepackage[list=true]{subcaption}


subfigurepackage that is in addition incompatible with thesubcaptionpackage that is used in the MWE. Do you definitely have to use that template? – leandriis Jan 01 '20 at 13:19\usepackage{subfigure}. But this question here is new question – aan Jan 01 '20 at 13:25uorthesispackage, you also usesubfiguresinceuorthesisloadssubfigure. This also means, you can not useuorthesisin combination withsubcaption. – leandriis Jan 01 '20 at 13:30subfigurewhich is obsolete since 2003. – Jan 01 '20 at 14:44