为什么 biber apa 中的位置后面没有冒号?

为什么 biber apa 中的位置后面没有冒号?

梅威瑟:

\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{hyperref}
\usepackage[backend=biber,style=apa,natbib=true]{biblatex}
\addbibresource{/home/joe/MyLibrary.bib}
\author{Joseph Corneli}
\date{9 May 2021}
\title{Mandala: With reference to Open Dialogue}
\hypersetup{
 pdfauthor={Joseph Corneli},
 pdftitle={Mandala: With reference to Open Dialogue},
 pdfkeywords={},
 pdfsubject={},
 pdfcreator={Emacs 28.0.50 (Org mode 9.4.5)}, 
 pdflang={English}}
\begin{document}

\section*{Of course others might see it differently}
\ldots{}and that would be the benefit of approaching these ideas from
within the \emph{Open Dialogue} model of \citet{seikkula2014open}.

\printbibliography[title=Reference]

\end{document}

使用 bibtex 项目:

@book{seikkula2014open,
  title={Open dialogues and anticipations: Respecting otherness in the present moment},
  author={Seikkula, Jaakko and Arnkil, Tom Erik},
  year={2014},
  publisher={National Institute for {Health and Welfare}},
  location={Helsinki, Finland}
}

输出:

文字图片

请注意“芬兰”后面的逗号——而 APA 指南是“在位置后使用冒号”(第 187 页)。(美国心理学会。(2010 年)。美国心理学会出版手册(第 6 版)。华盛顿特区:作者。)

风格指南是否发生了变化……?还是我做错了什么?还是某个地方出了问题?

答案1

是的,指导方针已经改变。biblatex-apa(>= v9.0 发布于 2019-11-23)实现第 7 版 APA 样式(来自 2019 年发布的手册)。

在第 7 版中,APA@book条目根本不应显示位置。请参阅https://apastyle.apa.org/style-grammar-guidelines/references/examples/book-references

\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[backend=biber, style=apa]{biblatex}
\usepackage{hyperref}

\begin{filecontents}{\jobname.bib}
@book{seikkula2014open,
  title     = {Open dialogues and anticipations:
               Respecting otherness in the present moment},
  author    = {Seikkula, Jaakko and Arnkil, Tom Erik},
  year      = {2014},
  publisher = {National Institute for {Health and Welfare}},
  location  = {Helsinki, Finland},
}
\end{filecontents}
\addbibresource{\jobname.bib}

\begin{document}
Lorem \textcite{seikkula2014open}.

\printbibliography[title=Reference]
\end{document}

Seikkula, J. 和 Arnkil, TE (2014)。开放对话和期待:尊重当下的他性。国家健康与福利研究所。

如果您的版本biblatex-apa显示位置后跟逗号,则可能需要更新。我使用 v9.14(2020-08-28)进行了测试,并得到了上面显示的输出。


如果你想要第 6 版 APA 格式,你需要使用biblatex-apa6style=apa6,

\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[backend=biber, style=apa6]{biblatex}
\usepackage{hyperref}

\begin{filecontents}{\jobname.bib}
@book{seikkula2014open,
  title     = {Open dialogues and anticipations:
               Respecting otherness in the present moment},
  author    = {Seikkula, Jaakko and Arnkil, Tom Erik},
  year      = {2014},
  publisher = {National Institute for {Health and Welfare}},
  location  = {Helsinki, Finland},
}
\end{filecontents}
\addbibresource{\jobname.bib}

\begin{document}
Lorem \textcite{seikkula2014open}.

\printbibliography[title=Reference]
\end{document}

Seikkula, J. 和 Arnkil, TE (2014)。开放对话和期待:尊重当下的他性。芬兰赫尔辛基:国家健康与福利研究所。

然后您将获得预期的位置,后跟冒号。

相关内容