我已经将四张图片添加为四页,但我不想将它们放在图表列表中。如何避免这种情况?
答案1
如果您想要一个看起来正常的标题并增加图形编号,但不让它们出现在图形列表中,则可以使用以下命令。
\documentclass{article}
\usepackage{mwe}
\makeatletter
\newcommand{\mycaption}[1]% #1 = caption text
{\refstepcounter{figure}\@makecaption{\fnum@figure}{#1}}
\makeatother
\begin{document}
\listoffigures
\begin{figure}
\mycaption{test caption}
\end{figure}
\begin{figure}
\mycaption{\blindtext}
\end{figure}
\begin{figure}
\caption{normal caption}
\end{figure}
\end{document}