图片列表 附录

图片列表 附录

我成功地为目录的附录制作了一个单独的列表,如下所示:


\usepackage[titles]{tocloft}

\newcommand{\listappendixname}{Contents Appendices}

\newlistof{appendix}{loa}{\listappendixname}

\usepackage{xpatch}

\makeatletter
\apptocmd{\appendix}{
  \xpatchcmd{\ttl@addcontentsline}
    {\addcontentsline{toc}}
    {\addcontentsline{loa}}{}{}
}

\makeatother

但是,我想对附录中的图表做同样的事情。所以我想从图表列表中排除附录中的图表,并将它们放在一个单独的列表中。我再次尝试列出清单。但是,这不起作用。有人能帮我吗?

我试过:

\newcommand{\listfigurename}{List of Figures Appendices}
\newlistof{figure}{lof}{\listfigurename}
\makeatletter
\xapptocmd{\@chapter}{\addcontentsline{lof}{figure}{\protect\numberline{\thechapter}#1}}{}{} % Add figures to the list of figures
\makeatother

相关内容