我怎样才能使自己的参考(bibtex 或其他)指向一些任意的网络链接,例如http://www.inf.ed.ac.uk/teaching/courses/anlp/slides/anlp13.pdf 以便它出现在 LaTeX 生成的 PDF 文件的“参考文献”下。
答案1
对于 BibTeX,您需要创建MISC
如下所示的条目:
@MISC{doe:website,
AUTHOR = "John Doe",
TITLE = "the website title",
MONTH = feb,
YEAR = 2011,
NOTE = "\url{http://whereever/file.ext}"
}
还有其他可以使用的键。我正在使用 Zotero(一个 Firefox 插件)来收集我的参考文献。它从例如此页面生成以下 BibTeX 条目:
@misc{_bibtex_????,
title = {bibtex - How to make my own reference for some arbitrary weblink - {TeX} - {LaTeX} - Stack Exchange},
url = {http://tex.stackexchange.com/questions/11818/how-to-make-my-own-reference-for-some-arbitrary-weblink},
howpublished = {http://tex.stackexchange.com/questions/11818/how-to-make-my-own-reference-for-some-arbitrary-weblink}
}
但是,是否显示以及如何显示 URL 取决于您使用的引用样式。
如果您使用 BibLaTeX(注意额外的“La”),那么您可以使用新ONLINE
类型:
@ONLINE{Doe:2011:Online,
author = {Doe, John},
title = {This is an example},
month = feb,
year = 2011,
url = {http://www.test.org/doe/}
}
答案2
% \usepackage{hyperref}
\href{http://www.inf.ed.ac.uk/teaching/courses/anlp/slides/anlp13.pdf}{This paper}
我没有意识到你不知道url
许多 bibstyle 中有一个字段。四种基本 bibstyle(plain
、、、 )对于 URL来说太旧了。更现代的样式,如(unsrt
、、 )提供的样式,以及许多其他样式(例如和由 创建的样式),都提供了BibTeX字段。abbrev
alpha
natbib
plainnat
unsrtnat
alphanat
ieeetrans
custum-bib
url