将 \listoffigures 限制为整本书的几个章节?

将 \listoffigures 限制为整本书的几个章节?

我使用书籍类,其中有多个章节。但是,我想将包含的章节数限制\listoffigures为少于实际章节数。该怎么做?

答案1

您可以使用包打开或关闭图表列表的包含caption

\documentclass{book}
\usepackage{caption}

\begin{document}
\listoffigures

\part{First}

\chapter{One}

\begin{figure}
\caption{A}
\end{figure}

\part{Second}
\captionsetup{list=false}

\chapter{Two}

\begin{figure}
\caption{Not in list}
\end{figure}

\end{document}

enter image description here

相关内容