参考书目中的超链接

参考书目中的超链接

我该如何在参考书目中添加超链接?我尝试这样做,但没有效果:

@article{pll_wikipedia,
    address = {http://en.wikipedia.org/wiki/Phase-locked\_loop},
    publisher = {Publisher},
    author = {},
    title = {Phase-Locked Loop},
    year = {},
    volume = {},
    number = {},
    pages = {},
    month = {}
}

答案1

正如@JosephWright 已经评论的那样,@article条目类型不太适合您要显示的条目类型。您可能应该使用@misc条目类型。

此外,假设您将使用@misc条目类型,则不应使用address字段来存储 URL。相反,您可能希望使用字段howpublished并将 URL 包含在\url{...}指令中。

假设您使用诸如 这样的参考书目样式plainnat,按照以下建议操作,您可能会得到如下结果:

enter image description here

\RequirePackage{filecontents}
\begin{filecontents}{phase.bib}
@misc{pll_wikipedia,
    howpublished = {\url{http://en.wikipedia.org/wiki/Phase-locked\_loop}},
    author = {Publisher},
    note = {Last visited on <insert date here>},
    title = {Phase-Locked Loop},
}
\end{filecontents}
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{natbib}
\bibliographystyle{plainnat}
\usepackage[hyphens]{url}  % allow line breaks at hyphens
\usepackage[colorlinks]{hyperref}
\begin{document}
\nocite{*}
\bibliography{phase}
\end{document}

相关内容