为什么网站链接没有显示在参考书目中

为什么网站链接没有显示在参考书目中

我不知道为什么网站链接的参考书目没有显示。有什么解决办法吗?谢谢。

@article{brunet2005grant,
  title={Grant funding to state and local governments and systematic assessment of vulnerability},
  author={Brunet, A.},
  year={2005},
  note = {Accessed August 2013},
  howpublished={\url{http://create.usc.edu/research/50788.pdf}}
}

答案1

请注意,在我熟悉的大多数 bib 样式中,howpublished对于类型的条目,该字段会被忽略@article;这解释了为什么如果您使用条目类型,该字段的内容不会显示@article

从访问代码中提供的网页来看,您要引用的部分似乎是一份编号的技术报告,而不是在期刊上发表的文章。因此,您真的不应该使用条目类型@article;相反,我建议您使用条目类型@techreport。因此,条目可能看起来应该是这样的:

@techreport{brunet2005grant,
  author      = "A. Brunet",
  title       = "Grant funding to state and local governments 
                 and systematic assessment of vulnerability",
  year        = 2005,
  institution = "University of Southern California",
  type        = "CREATE Report",
  number      = "05-018",
  url         = "http://create.usc.edu/research/50788.pdf",
  note        = "Accessed August 2013", 
}

此设置假定您正在使用 biblatex 或以及可识别字段类型BibTeX的合理现代书目样式(例如plainnaturl。(如果您使用的 bib 样式无法识别字段类型url,则应将urlnote字段的内容组合成一个类型为 的字段note,例如note = {\url{http://create.usc.edu/research/50788.pdf}, accessed August 2013},

在以下示例中,我假设您使用 BibTeX 以及plainnat参考书目样式以及natbib和包。运行、和两次hyperref后,您将获得以下输出:pdflatexbibtexpdflatex

在此处输入图片描述

\documentclass{article}
\usepackage{natbib}
\usepackage[colorlinks]{hyperref}
\bibliographystyle{plainnat} % use whatever bib style is right for you
\begin{document}
\cite{brunet2005grant}
\bibliography{create} % if the entry is in a file called 'create.bib'...
\end{document}

如果您没有加载该hyperref包,则应确保加载该url包,以便 URL 字段正确排版。

答案2

我认为它是一篇正规的文章,也可以像 springerlink 上的期刊论文一样在线查阅。

如果您正在使用biblatex然后尝试该url字段:

@article{brunet2005grant,
  title={Grant funding to state and local governments and systematic assessment of vulnerability},
  author={Brunet, A.},
  year={2005},
  urldate = {2013-08}, <---- CHANGE
  url={http://create.usc.edu/research/50788.pdf} <---- CHANGE
}

url可选字段中的字段,这是包手册的屏幕截图biblatex

在此处输入图片描述

相关内容