输出

输出

我的 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@inbooks 仅指 的选定部分(通常是章节)@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}

Partha Chatterjee 在他的演讲《我们的现代性》中详细讨论了这一点。他说,不同国家的现代性形式有所不同,这取决于每个国家的环境和社会实践。他说:“……真正的现代性在于确定适合特定情况的特定现代性形式;也就是说,运用理性的方法来识别和发明适合我们目的的特定现代性技术”(8-9)。//Lorem (Sigfridsson and Ryde 380) ipsum (381)。//(Chatterji 8-9)//Lorem (Sigfridsson and Ryde 382) ipsum (Chatterji 8-9) dolor (Sigfridsson and Ryde 383)。//引用的作品//Chatterji,Partha。《国家及其碎片:殖民和后殖民历史》。普林斯顿大学出版社,1993 年。//Sigfridsson,Emma 和 Ulf Ryde。 “从静电势和电势矩推导原子电荷的方法比较”。《计算化学杂志》,第 19 卷,第 4 期,1998 年,第 377-395 页。doi:10.1002/(SICI)1096-987X(199803)19:4h377::AID-JCC1i3.0.CO;2-P。

相关内容