带星号的 \captionof 版本无法与 pdfpages 一起使用

带星号的 \captionof 版本无法与 pdfpages 一起使用

我使用以下代码在上一页获取标题,但在目录中获取图形的正确位置。我现在在目录中获得了 2 个条目,这并不奇怪 ;-)。我现在想通过使用来删除第一个标题\captionof*。如果我这样做,\captionof命令将被忽略。我在日志文件中也找不到任何有意义的东西。

{   
\captionof{figure}
  [Organisation of the thesis (english)]
  {Organisation of the thesis (next page)} \label{fig:organisation} 
\pagebreak
\captionlistentry[figure]
  {Organisation of the thesis (english)}
\includepdf{./Bilder/organisationThesis} 
}

%\includepdf[addtolist={1000,figure,Organisation of the thesis (english),fig:organisation}]
%  {./Bilder/organisationThesis}

使用

%\includepdf[addtolist={1,figure,Organisation of the thesis (english),fig:organisation}]
%  {./Bilder/organisationThesis}

也没有成功,最终很可能会得到错误的页码。

我正在使用进行编译xelatex;所有包都是当前的 TeX Live 2011 包。

答案1

如果您想抑制目录中条目的包含,您应该使用一个空的可选参数(假设我猜测您使用 caption 包是正确的):

\documentclass[12pt]{article}
\usepackage{caption,pdfpages}
\begin{document}
\listoffigures

\captionof{figure}[]{Organisation of the thesis (next page)}
\label{fig:organisation}
\pagebreak
\addtocounter{figure}{-1}
\captionlistentry[figure]{Organisation of the thesis (english)}
 \includepdf{test}

\end{document}

相关内容