BibTeX URL 问题

BibTeX URL 问题

我有两个问题/难题无法找到任何解决方案:

1)由于某种原因,我无法对这两个互联网来源使用相同的代码:

@misc{EvansHBR,
author = {Evans, David S. and Schmalensee, R.},
title = {Why Winner-Takes-All Thinking Doesn't Apply to the Platform Economy},
howpublished = {https://hbr.org/2016/05/why-winner-takes-all-thinking-doesnt-apply-to-silicon-valley},
year = {2016},
note = {[2016.11.03]}

@misc{EC1,
author = {{European Commission}},
title = {Prohibition Decision (Art. 101 Ex 81)},
howpublished = {\url{http://ec.europa.eu/competition/antitrust/cases/dec_docs/34579/34579_1889_2.pdf}},
year = {2007},
note = {[2016.12.15]}

注意第二个是如何\url在 中的howpublished。当我尝试删除它(以及适当的{and })时,出现此错误: 在此处输入图片描述

如果可能的话,我想从我的所有互联网资源中删除该 URL,因为这会使文本以一种我不喜欢的方式突出。有什么想法导致此错误吗?

这是我使用的:

\documentclass[12pt]{article}
\usepackage{natbib,setspace,amsmath,graphicx,float}
\usepackage{url}
\usepackage{changepage}
\usepackage{natbib}
\usepackage{times} 
\onehalfspacing

\begin{document}
\bibliography{sqwg2}
\bibliographystyle{apalike}
\end{document}

这里.bib 文件。

答案1

您的文档中不应该有裸露的 URL。URL 可能包含导致 TeX 出现问题的特殊字符。您的第一个示例 URL 没问题,但第二个 URL 包含_对 TeX 来说很特殊的字符。

因此,根据您的参考书目样式和howpublished领域,您肯定需要第二个示例中的\url{...}(来自url包),并且您也应该在第一个示例中拥有它。

@misc{EvansHBR,
  author       = {Evans, David S. and Schmalensee, R.},
  title        = {Why Winner-Takes-All Thinking Doesn't Apply to the Platform Economy},
  year         = {2016},
  howpublished = {\url{https://hbr.org/2016/05/why-winner-takes-all-thinking-doesnt-apply-to-silicon-valley} [{2016-11-03]},
}

@misc{EC1,
  author       = {{European Commission}},
  title        = {Prohibition Decision (Art. 101 Ex 81)},
  year         = {2007},
  howpublished = {\url{http://ec.europa.eu/competition/antitrust/cases/dec_docs/34579/34579_1889_2.pdf} [2016-12-15]},
}

但是,如果您要使用biblatex,则不应使用howpublished表示 URL 和note表示访问日期。biblatex有专门用于 URL、DOI 和访问日期的字段:doiurlurldate、 ... 这些字段应包含裸 URI,无需其他标记。 特别是,您不应在那里使用\url

@misc{EvansHBR,
  author  = {Evans, David S. and Schmalensee, R.},
  title   = {Why Winner-Takes-All Thinking Doesn't Apply to the Platform Economy},
  year    = {2016},
  url     = {https://hbr.org/2016/05/why-winner-takes-all-thinking-doesnt-apply-to-silicon-valley},
  urldate = {2016-11-03},
}

@misc{EC1,
  author  = {{European Commission}},
  title   = {Prohibition Decision (Art. 101 Ex 81)},
  year    = {2007},
  url     = {http://ec.europa.eu/competition/antitrust/cases/dec_docs/34579/34579_1889_2.pdf},
  urldate = {2016-12-15},
}

如果你不喜欢 URL 默认的打字机字体,请参阅为什么 URL 默认采用等宽字体排版?并使用例如\urlstyle{same}

相关内容