biblatex mla-new 中的 @incollection 条目

biblatex mla-new 中的 @incollection 条目

我在用

\usepackage[style=mla-new]{biblatex}

@incollection{test,
author      = "Author Name",
title       = "Article Title",
editor      = "Editor Name",
booktitle   = "Book Title",
publisher   = "Publisher",
address     = "Address",
edition     = "14th edition",
year        = 2012,
pages       = "119-127",
}

并收到

姓名,作者。“文章标题。”书名。由编辑姓名编辑。第 14 版。地址:出版商,2012 年。119–127。印刷版。

与 pudue owls 相反:

姓氏,名字。“文章标题。”合集标题,编辑姓名,出版商,年份,条目页码范围。

我怎样才能更改出版商和末尾其他条目的顺序,并删除“打印”?

答案1

使用biblatex-mla版本2016/11/01 v1.9和最新版本biblatex(我测试的是 3.12,但任何较新的版本都应该没问题)以下 MWE

\listfiles
\documentclass[american]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[style=mla-new]{biblatex}
\usepackage{hyperref}

\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@incollection{test,
author      = "Author Name",
title       = "Article Title",
editor      = "Editor Name",
booktitle   = "Book Title",
publisher   = "Publisher",
address     = "Address",
edition     = "14th edition",
year        = 2012,
pages       = "119-127",
}
\end{filecontents}

\addbibresource{\jobname.bib}

\begin{document}
\cite{test}
\printbibliography
\end{document}

生产

姓名,作者。“文章标题。”书名,由编辑姓名编辑,第 14 版,出版商,2012 年,第 119-127 页。

根据https://owl.purdue.edu/owl/research_and_citation/mla_style/mla_formatting_and_style_guide/mla_works_cited_pa​​ge_books.html

相关内容