图表中的引用标记

图表中的引用标记

我的图表列表目前包含标题旁边的引用标记:

在此处输入图片描述

我该如何从图表列表中删除它们?

这是第一个图形的定义方式。如果我将 放在 的外面,\cite{}它将\caption{}显示在下一行:

在此处输入图片描述

\begin{figure}[h]
  \centering
  \input{Figures/gestural-interfaces-flowdiagram}
  \caption{The basic components of gestural systems\cite[p. 13]{Saffer}}
  \label{cv:gestural-interfaces-flowdiagram}
\end{figure}

答案1

使用可选参数\caption

\caption[Without cite for the LoF/LoT]{With the cite \cite{test} in the document}

完整示例:

\documentclass{article}

\begin{document}
\listoffigures
\begin{figure}
\centering
A  
\caption[The basic components of gestural systems]{The basic components of gestural systems\cite[p. 13]{Saffer}}
\label{cv:gestural-interfaces-flowdiagram}
\end{figure}

\begin{thebibliography}{9}
\bibitem{Saffer} A test item
\end{thebibliography}

\end{document}

在此处输入图片描述

相关内容