latex bibtex 引用标题 图表列表

latex bibtex 引用标题 图表列表

我正在使用 bibtex 用户包。当我在图片标题中引用参考文献时,它会在图片提升中显示名称,例如“latexcompanion”,而不是标题中显示的参考编号 []。

@book{latexcompanion,
    author    = "Michel Goossens and Frank Mittelbach and Alexander Samarin",
    title     = "The \LaTeX\ Companion",
    year      = "1993",
    publisher = "Addison-Wesley",
    address   = "Reading, Massachusetts"
}

答案1

我怀疑错误出在这段代码的某个地方。我尝试过只使用 '\listoffigures',效果很好。但是当使用下面的代码时,就会出现所描述的问题。

  \clearpage
  {\pagestyle{plain}\tableofcontents\relax\clearpage}
  \iftotalfigures {\pagestyle{plain}\listoffigures\relax\clearpage}\fi
  \iftotaltables {\pagestyle{plain}\listoftables\relax\clearpage}\fi
  \@ifpackageloaded{todonotes}{\pagestyle{plain}\listoftodos\relax\clearpage}{}
  \ifprinterfriendly
    \cleartooddpage
  \else
    \cleartorecto
  \fi
  \pagenumbering{arabic}
  \pagestyle{ruled}
}

相关内容