![biblatex mla-new의 @incollection 항목](https://rvso.com/image/391736/biblatex%20mla-new%EC%9D%98%20%40incollection%20%ED%95%AD%EB%AA%A9.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. 인쇄.
푸두 올빼미와 반대되는 점은 다음과 같습니다.
성 이름. "에세이 제목." 편집자 이름, 출판사, 연도, 항목 페이지 범위로 편집된 컬렉션 제목.
출판사 순서와 마지막에 있는 기타 항목의 순서를 변경하고 "인쇄"를 제거하려면 어떻게 해야 합니까?
답변1
biblatex-mla
다음 MWE 버전 2016/11/01 v1.9
과 최신 버전 biblatex
(3.12로 테스트했지만 최근 버전이면 괜찮습니다)을 사용하면 다음과 같습니다.
\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}
생산하다
에 따르면 맞는 것 같습니다https://owl.purdue.edu/owl/research_and_citation/mla_style/mla_formatting_and_style_guide/mla_works_cited_page_books.html.