0

我正在使用 LyX,并希望将 URL 添加到我的 bibtex 参考书目中的 @misc 条目。我正在使用 kunamed.bst 样式作为我的参考书目。我的 bibtex 条目看起来像这样

@misc{RFA2011,
author = {RFA},
booktitle = {Statistics},
title = {{Renewable Fuels Association}},
url = {http://www.ethanolrfa.org/pages/statistics},
urldate = {Jan 13th 2014},
year = {2014}
}

我试图改变FUNCTION {misc}kunamed.bst 文件中的内容,如下所示:

FUNCTION {misc}
{ output.bibitem
  format.authors output
  author format.key output
  output.year.check
  format.title output
  format.date output
  new.block
  howpublished output
  new.block
  note output
  fin.entry
}

对此

FUNCTION {misc}
{ output.bibitem
  format.authors output
  author format.key output
  output.year.check
  format.title output
  format.date output
  format.url output % <------
  new.block
  howpublished output
  new.block
  note output
  fin.entry
}

我的参考书目没有发生任何变化。任何想法如何解决这一问题?

4

1 回答 1

0

我通过更改 url 在 bibtex 条目中的写入方式自己解决了这个问题

@misc{RFA2011,
author = {RFA},
booktitle = {Statistics},
title = {{Renewable Fuels Association}},
howpublished = "\url{http://www.ethanolrfa.org/pages/statistics}", % <---
year = {2014},
note = "[Accessed online: 13-Jan-2014]" 
于 2014-05-31T12:47:14.423 回答