我在 LaTeX 中使用bibtex
它来制作参考书目。我有一些需要在论文中引用的 URL。如何将 URL 添加到文件中.bib
?
我的文件中的典型部分.bib
如下所示:
@conference{eigenfacepaper,
title={{Face recognition using eigenfaces}},
author={Turk, M. and Pentland, A.},
booktitle={Proc. IEEE Conf. on Computer Vision and Pattern Recognition},
volume={591},
year={1991}
}
我尝试了一些杂项部分,bibtex
但它们没有出现在我的文档中。
答案1
上次引用 URL 时,我使用了以下形式的 BibTeX 条目:
@misc{bworld,
author = {Ingo Lütkebohle},
title = {{BWorld Robot Control Software}},
howpublished = "\url{http://aiweb.techfak.uni-bielefeld.de/content/bworld-robot-control-software/}",
year = {2008},
note = "[Online; accessed 19-July-2008]"
}
如果没有显示,那么你的 BibTeX 样式可能确实存在问题(或者你忘记了\usepackage{url}
或\usepackage{hyperref}
在你的主.tex
文件中)。
答案2
你需要
\usepackage{url}
进而
howpublished={\url{http://my.url.com/}},
答案3
取决于你使用的 BibTeX 样式。在普通的样式中,我通常使用
note={\url{http://...}}
在 biblatex 中(我认为还有 natbib 中),你可以直接写
url={http://...}