将 URl 添加到参考书目中的文章

将 URl 添加到参考书目中的文章

我没有找到我引用的论文的期刊。因此,我想在参考书目中添加文章条目的 URL。我已经添加了它,但我(accessed on Nov. 6th, 2015}在文章条目中得到的注释中单词之间没有空格。

是否可以在笔记中的单词之间添加一些空格?请参见下面的屏幕截图。

在此处输入图片描述

特克斯代码

\documentclass[
    11pt,
    english,
    twoside,
    a4paper,
    headsepline,
    footsepline
]{scrbook}

\usepackage{a4}   
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{cite}
\usepackage{color}
\usepackage[bookmarks=true,
            bookmarksopen=true,
            bookmarksnumbered=true,
            colorlinks=true,
            citecolor=black,
            linkcolor=black                 
            ]
            {hyperref}

\begin{document}

Mowing down trees, flooding streets and battering buildings, Patricia hit land as a Category 5 hurricane on Friday \cite{recordingData2} evening before grinding inland. It moved quickly but lost power in the mountains that rise up along the Pacific coast and was downgraded to a tropical depression on Saturday morning as it \cite{waze} headed through central Mexico \cite{recordingData}.

        \bibliographystyle{plainurl}
        \bibliography{bibliography}

\end{document}

参考书目

@article{recordingData2,
  author = {Leon Stenneth and Ouri Wolfson and Philip S. Yu and Bo Xu},
  title = {Transportation Mode Detection using Mobile Phones and GIS Information},
journal = {ACM DL},
  year = {2011},
    pages = {3}
}

     @misc{waze,
         author = {androidcommunity.com},
         title = {Waze traffic app updates with Foursquare and Yelp integration},
         howpublished = {\url{http://androidcommunity.com/waze-traffic-app-updates-with-foursquare-and-yelp-integration-20120131/}},
  note = {Accessed: 29.09.2015}
}

@article{recordingData,
  author = {Rudolf Giffinger},
  title = {Smart cities Ranking of European medium-sized cities},
  journal = {Report of Centre of Regional Science},
  year = {October 2007},
  url  = {http://www.smart-cities.eu/download/smart_cities_final_report.pdf (accessed on Nov. 6th, 2015},
  pages = {11}
}

答案1

您的参赛作品存在几个问题:

  • year请将属于和字段的信息month分开保存。

  • 同样,不要合并urlnote字段的内容。

  • 不要忘记用花括号括住那些不应该小写的单词 - 例如“European”、“GIS”、“Yelp”和“Foursquare”。

  • 请明确加载该url包,并在加载包时指定选项hyphens,以便长 URL 字符串可以在破折号处换行。

另一件事:我认为该条目recordingData包含几个其他错误。首先,您可能不应该使用条目类型@article,因为出版物似乎不满足期刊文章的通常标准。请检查@techreport条目类型是否更合适。其次,报告中有不少作者,而不仅仅是鲁道夫·吉芬格。您通过省略六位作者中的五位来达到什么目的?第三,该字段是pages = {11}关于什么的?根据您提供的链接,该报告包含 28 页,而不是 11 页。

给人一种傲慢的印象,或者更糟的是,对参考书目部分条目的正确性漠不关心,这是不是这是让读者相信你的论文或报告其余部分的正确性的好方法。

在此处输入图片描述

\RequirePackage{filecontents}
\begin{filecontents}{bibliography.bib}
@article{recordingData2,
  author = {Leon Stenneth and Ouri Wolfson and Philip S. Yu and Bo Xu},
  title = {Transportation Mode Detection using Mobile Phones and {GIS} Information},
  journal = {ACM DL},
  year = {2011},
  pages = {3},
} 
@misc{waze,
   author = {androidcommunity.com},
   title = {Waze traffic app updates with {Foursquare} and {Yelp} integration},
   howpublished = {\url{http://androidcommunity.com/waze-traffic-app-updates-with-foursquare-and-yelp-integration-20120131/}},
   note = {Accessed: 29.09.2015}
}
@article{recordingData,
  author = {Rudolf Giffinger},
  title = {Smart cities Ranking of {European} medium-sized cities},
  journal = {Report of Centre of Regional Science},
  year = 2007,
  month = "October",
  url  = {http://www.smart-cities.eu/download/smart_cities_final_report.pdf},
  note = "Accessed: Nov.~6, 2015",
  pages = {11}
}
\end{filecontents}

\documentclass[
    11pt,english,twoside,a4paper,headsepline,footsepline
    ]{scrbook}

%%\usepackage{a4}   
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{cite}
\usepackage{color}
\usepackage[hyphens]{url}
\usepackage[bookmarks=true,bookmarksopen=true,
           bookmarksnumbered=true,
           colorlinks=true,citecolor=black,linkcolor=black                 
           ]{hyperref}

\begin{document}

        \nocite{*}
        \bibliographystyle{plainurl}
        \bibliography{bibliography}

\end{document}

相关内容