我使用书籍类,其中有多个章节。但是,我想将包含的章节数限制\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}