我想在我的每个参考书目条目中自动添加一条通知和超链接,内容类似于“参考于第 (p1)、(p2) 页……”,其中 (p1) 、(p2) 是指向我文档中相应参考页面的可点击链接。参考书目包中是否有此项设置?
答案1
您可以使用hyperref
带pagebackref
选项设置的包。然后您需要renewcommand{\backref}[1]{Referred to on page #1}
。
平均能量损失
反向引用
\documentclass{article}
\usepackage[pagebackref]{hyperref}
\renewcommand{\backref}[1]{Referred to on page #1}
\begin{document}
A citation: \cite{whitaker:20:mwf}.
\bibliographystyle{unsrt}
\bibliography{backref}
\end{document}
backref.bib(请原谅我无耻地宣传我的论文)
@ARTICLE{whitaker:20:mwf,
author = {S. T. Whitaker and G. Nataraj and J-F. Nielsen and J. A. Fessler},
title = {Myelin water fraction estimation using small-tip fast recovery {MRI}},
journal = {{Mag. Res. Med.}},
volume = 84,
number = 4,
pages = {{1977--90}},
month = oct,
doi = {10.1002/mrm.28259},
year = 2020
}