![@incollection エントリ (biblatex mla-new)](https://rvso.com/image/391736/%40incollection%20%E3%82%A8%E3%83%B3%E3%83%88%E3%83%AA%20(biblatex%20mla-new).png)
使っています
\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}
生産する