如何查找参考文献中但未被引用的参考文献?

如何查找参考文献中但未被引用的参考文献?

我的合著者拒绝使用 .bib 文件,而更喜欢在一个主 .tex 文档中包含参考书目列表。例如:

\begin{thebibliography}{99}

\bibitem{K50}
H. Kuhn, Extensive games,
Proc. Nat. Acad. Sci. 36 (1950) 286--295.

\bibitem{S53}
L. Shapley, Stochastic games, 
Proc. Nat. Acad. Sci. USA 39 (1953) 1095--1100. 

当参考文献列表太长时,检查每个来源是否被引用以及它们是否都会出现在列表中是一件很麻烦的事情。我知道如何用 .bib 来做到这一点,但不确定是否可以在一个 .tex 文档中做到这一点。我们在 Overleaf 中工作。

任何帮助都将受到赞赏。

答案1

你可以使用 backref。它将插入指向所引用条目的链接(注意,条目之间要有空行):

\documentclass{article}

\usepackage[backref]{hyperref}

\begin{document}
\section{some text}
\cite{K50}

\begin{thebibliography}{99}

\bibitem{K50}
H. Kuhn, Extensive games,
Proc. Nat. Acad. Sci. 36 (1950) 286--295.

\bibitem{S53}
L. Shapley, Stochastic games, 
Proc. Nat. Acad. Sci. USA 39 (1953) 1095--1100. 
\end{thebibliography}
\end{document}

在此处输入图片描述

相关内容