biblatex-apa 中按问题分页

biblatex-apa 中按问题分页

这里还有一个biblatex-apa问题。似乎以前没有人问过这个问题。APA 第 6 版规定,在格式化期刊(和其他期刊参考文献)时,如果期刊按期分页,则期号应包含在卷号后面(括号中)。否则(如果期刊是连续分页的),则不包括期号(请参阅 APA 出版手册第 6 版第 198 页)。

version 6.0默认情况下,期刊的格式似乎biblatex-apa遵循连续分页格式。如何指定特定条目按期分页,并因此打印期号?

bibliography.bib

@article{myers,
author = {Scott W. Myers and Michael Ballweg and John L. Wedberg},
title = {Assessing the impact of {European} corn borer on corn grown for silage},
url = {http://www.uwex.edu/ces/crops/uwforage/ECB.htm},
urldate = {2013-07-09},
journaltitle = {Focus on Forage},
volume = {3},
issue = {4},
organization = {University of Wisconsin Wisconsin Team Forage},
keywords = {jared},
}

sample.tex

\documentclass{article}

\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=apa, backend=biber]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
\addbibresource{bibliography.bib}

\begin{document}

\nocite{*}
\printbibliography

\end{document}

答案1

使用number字段来表示发行号。摘自 BibLaTeX 手册:

季刊通常以“春季”或“夏季”等名称来标识,这些名称应在发行字段中给出。

因此你的bibliography.bib文件将如下所示:

@article{myers,
author = {Scott W. Myers and Michael Ballweg and John L. Wedberg},
title = {Assessing the impact of {European} corn borer on corn grown for silage},
url = {http://www.uwex.edu/ces/crops/uwforage/ECB.htm},
urldate = {2013-07-09},
journaltitle = {Focus on Forage},
volume = {3},
number = {4},
organization = {University of Wisconsin Wisconsin Team Forage},
keywords = {jared},
}

进行该更改后,我得到以下输出:

参考文献的 PDF

相关内容