使用 hyperref 直接引用网页

使用 hyperref 直接引用网页

我正在写一份提案,但可能需要将参考资料放在单独的网站上。是否可以让 hyperref 将所有引文链接重定向到网站,而不是文档末尾的参考资料部分(效果很好)。

谢谢!

\documentclass[letterpaper,12pt]{article}

\usepackage{natbib}
\usepackage{hyperref}

\begin{filecontents}{test.bib}
  @article{eady49,
  Author = {Eady, Eric T},
  Journal = {Tellus},
  Pages = {33--52},
  Title = {Long waves and cyclone waves},
  Volume = {1},
  Year = {1949}}   
\end{filecontents}

\begin{document}

\citet{eady49} makes a nice hyperlink to the next page...  
I'd like it to go to \url{http://myweb.ca/References.html}

\clearpage
\bibliographystyle{plainnat}
\bibliography{test.bib}

\end{document}

相关内容