如何为分割图生成单个简短标题

如何为分割图生成单个简短标题

我希望能够制作一个吐痰图形,该图形仅在我的图形列表中注册一个简短的标题。

\documentclass{article}
\usepackage{graphicx}
\usepackage[font=footnotesize]{caption}
\begin{document}

\listoffigures

\begin{figure}[htbp] %  figure placement: here, top, bottom, or page
       \centering
         \includegraphics[width=5cm]{example-image.pdf} 
        \caption[Short caption for whole fig]{caption text for first part...}
           \label{fig:g3-gen1}
    \end{figure}

        \begin{figure}[htbp] \ContinuedFloat
       \centering
         \includegraphics[width=5cm]{example-image.pdf} 
        \caption[I don't want to see this!]{\textit{(continued)} caption text for second part...}
       \label{fig:g3-gen2}
    \end{figure}

\end{document}

在此处输入图片描述

如何实现这一点?

相关内容