参考书目章节链接

参考书目章节链接

如何在文档中引用参考书目章节?

我需要的是类似这样的内容:

For information about source please refer to the Bibliography.

我希望“参考书目”这个词作为一个链接。

使用简单的

\bibliographystyle{plain}
\bibliography{bib/bibtexfolder}

答案1

确保加载hyperref包。使用\phantomsection在出现参考书目的文档中创建一个锚点,在\label那里放置一个,然后使用\hyperref命令将单词“参考书目”链接到感兴趣的位置:

\documentclass{book}  

\usepackage{hyperref}

\begin{document}

\chapter{First}
For information about source please refer to the \hyperref[hellobiblio]{Bibliography}.

\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Bibliography}
\label{hellobiblio}
\bibliographystyle{plain}
\bibliography{bib/bibtexfolder}

\end{document}

编辑:我将文档类别更改为book并修复了目录的一个小问题。

相关内容