我的 tex 文件内容是
\documentclass{report}
\usepackage{csquotes}
\usepackage[backend=bibtex,style=mla-new]{biblatex}
\usepackage{filecontents}
\begin{filecontents*}{workcited.bib}
@inbook{chatterji,
author = "Partha Chatterji",
title = "The nation and its fragments",
date = "1994",
pages = "8-9",
}
\end{filecontents*}
\bibliography{workscited}
\begin{document}
Partha Chatterjee discusses this point in his lecture Our Modernity in detail.
He says that the forms of modernity differ between different countries depending upon the milieu and social practices of each.
He says “…true modernity consists in determining the particular forms of modernity that are suitable in particular circumstances; that is, applying the methods of reason to identify and invent the specific technologies of modernity that are appropriate to our purpose. \autocite[8-9]{chatterji}.
\printbibliography
\end{document}
输出
我得到的是输出
并被引述为
我希望得到如下输出
Partha Chatterjee 说:“真正的现代性在于确定适合特定情况的特定现代性形式;也就是说,运用理性的方法来识别和发明适合我们目的的特定现代性技术。”(8-9)
我想仅页码输出为 (8-9) ,而不是 MLA 8 所要求的作者姓名和页码。在参考文献页面中,我得到了一个额外的标题,我也想将其删除。
答案1
首先,您的条目chatterji
是 和@book
,而不是@inbook
。@inbook
s 仅指 的选定部分(通常是章节)@book
。 一个@inbook
需要一个title
和一个booktitle
字段。 但是国家及其碎片是整本书,所以我建议你去看看@book
。
当你写\autocite[8-9]{chatterji}
biblatex
印刷品时
查特吉 8-9
因为这是该作品的完整引文。如果您之前提到过作者姓名,但想在引文中隐藏它,则需要使用带星号的版本\autocite*
。如果最后一次引文是针对同一作品(使用“ibid.”跟踪器),该姓名也会自动被隐藏。
\documentclass{article}
\usepackage{csquotes}
\usepackage[backend=bibtex,style=mla-new]{biblatex}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@book{chatterji,
author = {Partha Chatterji},
title = {The Nation and Its Fragments},
subtitle = {Colonial and Postcolonial Histories},
date = {1993},
publisher = {Princeton University Press},
location = {Princeton},
}
\end{filecontents*}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
Partha Chatterjee discusses this point in his lecture Our Modernity in detail.
He says that the forms of modernity differ between different countries depending upon the milieu and social practices of each.
He says \enquote{…true modernity consists in determining the particular forms of modernity that are suitable in particular circumstances; that is, applying the methods of reason to identify and invent the specific technologies of modernity that are appropriate to our purpose} \autocite*[8-9]{chatterji}.
Lorem \autocite[380]{sigfridsson} ipsum \autocite[381]{sigfridsson}.
\autocite[8-9]{chatterji}
Lorem \autocite[382]{sigfridsson} ipsum \autocite[8-9]{chatterji} dolor \autocite[383]{sigfridsson}.
\printbibliography
\end{document}