使用 APA 格式和 BibTeX 引用维基百科

使用 APA 格式和 BibTeX 引用维基百科

维基百科的条目引用维基百科说 APA 格式要求他们关于剽窃的页面格式如下:

剽窃。(nd)。摘自维基百科。2004 年 8 月 10 日检索自http://en.wikipedia.org/wiki/Plagiarism

具体来说,APA 格式要求用文章名称代替作者。

要使用 BibTeX 引用 Wikipedia,他们说使用以下代码:

@misc{ wiki:###,
   author = "Wikipedia",
   title = "Plagiarism --- {W}ikipedia{,} The Free Encyclopedia",
   year = "2004",
   url = "\url{http://en.wikipedia.org/w/index.php?title=Plagiarism&oldid=5139350}",
   note = "[Online; accessed 22-July-2004]"
 }

然而,这将维基百科作为作者(因此不符合 APA 格式)。

我正在使用的包是apacite,并且我的参考书目代码是:

\usepackage{apacite}
\bibliographystyle{apacite}
\bibliography{FinalRoughDraft}

我曾尝试过将文章标题放在字段中author = ...,但如果我输入,那么author = Estimation lemma作者位置的输出就是“引号,E”。我也曾尝试在标题周围加上引号,但这也不起作用。

有什么办法可以解决这个问题吗?

答案1

让我们有一个 TeX 和一个 BIB 文件:

代码

wiki.tex

\documentclass{article}
\usepackage{url,apacite}    % package url to prevent horrible linebreaks
\bibliographystyle{apacite}
\begin{document}
\cite{wiki:xxx}
\bibliography{wiki}
\end{document}

wiki.bib

@misc{ wiki:xxx,
  author = {{Estimation lemma}},
  title = "Estimation lemma --- {W}ikipedia{,} The Free Encyclopedia",
  year = "2010",
  url = "http://en.wikipedia.org/w/index.php?title=Estimation_lemma&oldid=375747928",
  note = "[Online; accessed 29-September-2012]"
}

输出

编译示例

笔记

注意使用双括号:{{Estimation lemma}}
内部括号隐藏了这些来自 BibTeX 的单词,以便它只能“看到”一个字符串。

答案2

这是我为美国心理学协会第七版维基百科格式:

添加以下内容(来自这个答案)来抑制来自 apacite 的“检索自”文本:

\usepackage{apacite}
\AtBeginDocument{\renewcommand{\BRetrievedFrom}{}}  % remove "Retrieved from" for reference links

然后像这样格式化你的维基百科文章:

@misc{website:ZookeeperWiki,
    author       = {{Apache ZooKeeper}},
    month        = {December},
    day          = {1},
    url          = {https://en.wikipedia.org/w/index.php?title=Apache_ZooKeeper&oldid=992755046},
    year         = {2019},
    howpublished = {In \textit{Wikipedia}},
}

引用应如下所示:

Apache ZooKeeper。(2019 年 12 月 1 日)。维基百科https://en.wikipedia.org/w/index.php?title=Apache_ZooKeeper&oldid=992755046

相关内容