如何引用参考文献以创建从引文标注到参考书目条目的超链接

如何引用参考文献以创建从引文标注到参考书目条目的超链接

我在我的文档中是这样引用参考文献的:

  • 使用的软件包citehyperref

  • 文中引用:\cite{1}

  • 参考书目中的格式化条目:

    \begin{thebibliography}{99}
    
    \bibitem{1}
    O. S. Bruning, P. Collier, P. Lebrun, S. Myers, R. Ostojic, J. Poole, 
    and P. Proudlock, LHC Design Report Vol. 1: The LHC Main Ring.
    

[1]我的问题是,我无法通过单击文本中的引用标注来转到参考书目中的相应条目。

答案1

引文管理包natbib与 包具有出色的互操作性hyperref。如果您加载natbib,请确保不要加载cite包。

请注意,由于您没有使用 BibTeX 来创建格式化的参考书目,因此无需提供\bibliographystyle指令。

请尝试为 bib 条目提供多于“1”的助记键。

在此处输入图片描述

\documentclass{article}
\usepackage[numbers]{natbib} % numeric citation call-out style
\usepackage[colorlinks,citecolor=blue]{hyperref}
\begin{document}
\cite{bruning-et-mult}

\begin{thebibliography}{1}

\bibitem{bruning-et-mult}
O. S. Bruning, P. Collier, P. Lebrun, S. Myers, R. Ostojic, J. Poole, 
and P. Proudlock, LHC Design Report Vol.1: The LHC Main Ring.

\end{thebibliography}
\end{document}

相关内容