我在哪裡可以獲得給定條目的附加書目資訊?

我在哪裡可以獲得給定條目的附加書目資訊?

我正在為一次會議撰寫文章,在他們的範例 TeX 文件中,他們使用瞭如下參考:

@article{kaye:puc,
  year =         2014,
  issn =         {1617-4909},
  journal =      {Personal and Ubiquitous Computing},
  volume =       18,
  number =       4,
  doi =          {10.1007/s00779-014-0773-4},
  title =        {Special issue on science fiction and ubiquitous
                  computing},
  url =          {http://dx.doi.org/10.1007/s00779-014-0773-4},
  publisher =    {Springer London},
  author =       {Kaye, Jofish and Dourish, Paul},
  pages =        {765-766},
  language =     {English}
}

我嘗試使用 Google Scholar 並從 Google Scholar 獲取 BibTeX:

@article{kaye2014special,
  title={Special issue on science fiction and ubiquitous computing},
  author={Kaye, Jofish and Dourish, Paul},
  journal={Personal and Ubiquitous Computing},
  volume={18},
  number={4},
  pages={765--766},
  year={2014},
  publisher={Springer-Verlag}
}

你可以看到它不一樣,在BibTeX Google Scholar給我的BibTeX中沒有DOI連結。

那麼我在哪裡可以獲得像上面這樣的參考文獻的書目資訊呢?

答案1

我使用瀏覽器擴充佐特羅導出.bib文件。它還具有下載和重新命名文章以供離線使用的便利功能.pdf(如果可用),以及將參考文獻組織到資料夾中,以及許多其他節省時間(理智)的功能。

OP 文章的輸出:

@article{kaye_special_2014,
    title = {Special {Issue} on {Science} {Fiction} and {Ubiquitous} {Computing}},
    volume = {18},
    issn = {1617-4909},
    url = {http://dx.doi.org/10.1007/s00779-014-0773-4},
    doi = {10.1007/s00779-014-0773-4},
    number = {4},
    urldate = {2015-04-17},
    journal = {Personal Ubiquitous Comput.},
    author = {Kaye, Jofish and Dourish, Paul},
    month = apr,
    year = {2014},
    pages = {765--766}
}

相關內容