我想在我的 LaTeX 文档中包含一些图形,就像其他图形一样但图表列表中没有这些图表。由于我找不到解决方案,所以我不得不问您,有办法吗?
答案1
正如所述sidewaysfigure 环境中的图形未列在图形列表中您可以添加一个空的可选参数\caption
并加载任一包subfig
,caption
或者subcaption
使图形不出现在图形列表中。
\documentclass{article}
\usepackage{caption}
\begin{document}
\begin{figure}
\caption[]{My caption 1}% Does not appear in LoF
\end{figure}
\begin{figure}
\caption{My caption 2}% Appears in LoF
\end{figure}
\listoffigures
\end{document}
答案2
取自texblog.org:
如果其他解决方案不适合您,请按如下方式使用 caption 包:
\usepackage{caption}
% ...
\captionsetup[figure]{list=no}
% now figures are excluded
\captionsetup[figure]{list=yes}
% now figures are included
你可以随意切换