我引用了两个姓氏相同的作者。在文档中引用他们时,natbib
会自动添加名字(缩写),以区分他们。我看到,使用biblatex
,可以添加[uniquename=false]
,以抑制这种情况的发生。我在 中没有找到类似的选项natbib
。但是,是否可以natbib
以某种方式抑制它?
\documentclass[a4paper, bibtotocnumbered,liststotoc,12pt]{scrartcl}
\usepackage{apacite}
\usepackage{hyperref}
\usepackage{natbib}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage[english]{babel}
\begin{document}
... \citet{jones1991} ... \citet{jonesetal2008}
\bibliographystyle{apacite}
\bibliography{testxyz}
\end{document}
相应.bib
文件如下:
@article{jones1991,
author = {Jones, Jennifer J.},
journal = {Journal of Accounting Research},
number = {2},
pages = {193--228},
publisher = {[Accounting Research Center, Booth School of Business, University of Chicago, Wiley]},
title = {Earnings Management During Import Relief Investigations},
volume = {29},
year = {1991}
}
@article{jonesetal2008,
author = {Jones, Keith L. and Krishnan, Gopal V. and Melendrez, Kevin D.},
title = {Do Models of Discretionary Accruals Detect Actual Cases of Fraudulent and Restated Earnings? An Empirical Analysis},
journal = {Contemporary Accounting Research},
volume = {25},
number = {2},
pages = {499-531},
year = {2008}
}