删除 APA 引用中偶尔出现的名字首字母

删除 APA 引用中偶尔出现的名字首字母

我是 LaTeX 的新手,使用 Overleaf 来进行我的项目。

这是我的设置,仅供参考

\usepackage{url}
\usepackage{hyperref}
\usepackage{xcolor}

\definecolor{SchoolColor}{rgb}{0.6471, 0.1098, 0.1882} % Crimson
\definecolor{chaptergrey}{rgb}{0.6471, 0.1098, 0.1882} % for chapter numbers
\definecolor{citecolor}{rgb}{0.2, 0.2, 0.6}
\definecolor{darkblue}{rgb}{0, 0, 0.5}

\hypersetup{
    colorlinks,
    citecolor=darkblue,
    filecolor=black,
    linkcolor=black,
    urlcolor=darkblue,
}
% Use biblatex for references - change style= as appropriate
\usepackage[natbib=true,backend=biber,sorting=nyt,style=apa,apamaxprtauth=7]{biblatex}
% \renewcommand*{\bibfont}{\fontsize{10}{12}\selectfont}

% add your references to this file
\addbibresource{references.bib}

references.bib

@article{wang2015pm2,
  title={PM$_{2.5}$ and cardiovascular diseases in the elderly: an overview},
  author={Wang, Chenchen and Tu, Yifan and Yu, Zongliang and Lu, Rongzhu},
  journal={International journal of environmental research and public health},
  volume={12},
  number={7},
  pages={8187--8197},
  year={2015},
  publisher={Multidisciplinary Digital Publishing Institute}
}

@article{xing2016impact,
  title={The impact of PM$_{2.5}$ on the human respiratory system},
  author={Xing, YuFei and Xu, YueHua and Shi, MinHua and Lian, YiXin},
  journal={Journal of thoracic disease},
  volume={8},
  number={1},
  pages={E69},
  year={2016},
  publisher={AME Publications}
}

用法和样例:

cardiovascular diseases \citep{wang2015pm2} and respiratory-related diseases \citep{xing2016impact}

输出:

心血管疾病(C. Wang et al.,2015)和呼吸系统疾病(Xing et al.,2016)

我很疑惑,为什么第一个标注的是“C. Wang et al.”,而第二个标注的是“Xing et al.”?如何将第一个标注为“Wang et al.”?

答案1

APA 格式要求在某些情况下(即如果两者都是第一作者),为同姓的人添加名字首字母。请参阅https://apastyle.apa.org/style-grammar-guidelines/citations/basic-principles/citing-authors-same-surname

假设您有几部由不同人创作的作品,并称Wang其为第一作者,那么您报告的输出是正确的。但如果您仅引用问题中显示的两个条目,则引用中没有名字首字母。

请注意,biblatex无法区分同一个人名字的不同版本指的是同一个人。因此Don KnuthDonald KnuthDonald E. Knuth都将被视为不同的名称,即使我们知道它们都指的是同一个人。

理论上,可以通过设置关闭此功能

uniquename=false,

但这样你就不再使用正确的 APA 样式了。(更一般地说,不能保证所有“标准”样式选项都以相同的方式工作biblatex-apa,但这个可以。)

相关内容