没有作者的网页,使用标题可以制作非常长的 apa 引用

没有作者的网页,使用标题可以制作非常长的 apa 引用
\documentclass{article}
\usepackage{apacite}
\usepackage[hyphens]{url}
\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
  @book{forbes,
    author = {},
    year = {2013},
    title = {Supremes Unsympathetic to Farmer's Deception at Center of Monsanto GMO Soybean SCOTUS Patent Challenge},
    note = {\url{http://www.forbes.com/sites/jonentine/2013/02/19/farmers-deception-at-center-of-monsanto-gmo-soybean-scotus-patent-challenge-genetic-innovation-threatened/}}
  }
\end{filecontents}

\begin{document}

That's a long ref \cite{forbes}.

\bibliographystyle{apacite}
\bibliography{\jobname}
\end{document}

引用一个超长的网页标题作为参考的句子

APA 参考文献建议在引用时缩短标题,例如上例中的 (Supremes Unsympathetic, 2013)。当然我可以在 BibDesk 中编辑标题,但参考文献列表中包含缩写标题。我该如何处理?

答案1

您可以key在以下情况下使用该字段,即:

  @book{forbes,
    author = {},
    year = {2013},
    key = {Supremes Unsympathetic},
    title = {Supremes Unsympathetic to Farmer's Deception at Center of Monsanto GMO Soybean SCOTUS Patent Challenge},
    note = {\url{http://www.forbes.com/sites/jonentine/2013/02/19/farmers-deception-at-center-of-monsanto-gmo-soybean-scotus-patent-challenge-genetic-innovation-threatened/}}
  }

相关内容