参考书目中的引用位置列表

参考书目中的引用位置列表

我希望在参考书目项目的末尾列出指向文档中引用点的链接,可能带有页码(如果同一页有两个引用,则提供一些解决方案)。例如,在以下 MWE 中应该有类似

引自 1、3、3^2

是否有一个包可以做到这一点? 肯定有,但我不知道如何指示搜索引擎找到它。

\documentclass{book}

\usepackage{filecontents}
\usepackage[numbers]{natbib}

\begin{filecontents}{biblio.bib}
@article{Author2012,
    Author = {Author, A},
    Title = {Article},
    Year = {2012}}
\end{filecontents}

\begin{document}

\chapter{Intro}
First citation \cite{Author2012}.

\chapter{Example}
Second citation \cite{Author2012}.
Third citation \cite{Author2012}.


\bibliographystyle{plainnat}
\bibliography{biblio}

\end{document}

相关内容