软件包 subfig 在图形列表中添加覆盖标签

软件包 subfig 在图形列表中添加覆盖标签

如上所述,此 MWE

\documentclass{book}
\usepackage{lipsum}
\usepackage{subfig} % this breaks list of figures with overwriting labels

\begin{document}

\mainmatter
\lipsum
\begin{figure}
  \caption[Short caption for list of figures]{Long caption}
\end{figure}

\backmatter
\listoffigures

\end{document}

当使用 进行编译时pdflatex,会产生以下问题:

在此处输入图片描述

而没有subfig包一切都很好。

有什么线索吗?提前致谢。

答案1

这是一个已知错误,在 caption 包中存在了大约三天。因此,更新 TeX 发行版应该会有所帮助,如果 caption 包的 2015-09-20 版本(或更新版本)尚未成为 TeX 发行版的一部分,请等待或caption手动更新包 [1]。

也可以看看:https://sourceforge.net/p/latex-caption/tickets/24/

[1]https://sourceforge.net/p/latex-caption/code/HEAD/tree/branches/3.3/tex/

相关内容