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 年。列印.

與普杜貓頭鷹相反:

姓氏,名字。 “論文題目。”館藏標題,由編輯姓名、出版商、年份、條目頁碼範圍編輯。

如何更改最後出版商和其他條目的順序,並刪除「列印」?

答案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_itation/mla_style/mla_formatting_and_style_guide/mla_works_cited_pa​​ge_books.html

相關內容