elsarticle - 相同姓氏、不同作者、同一年份 - 为什么引用为 a、b?

elsarticle - 相同姓氏、不同作者、同一年份 - 为什么引用为 a、b?

通过运行这个:

\documentclass[review, authoryear]{elsarticle}
\usepackage{filecontents}   
\begin{filecontents}{\jobname.bib}
@article{Chen2021,
   author = {Chen, Jie and Lasfer, Meziane and Song, Wei and Zhou, Si},
   title = {Recession managers and mutual fund performance},
   journal = {Journal of Corporate Finance},
   volume = {69},
   pages = {102010},
   ISSN = {0929-1199},
   DOI = {https://doi.org/10.1016/j.jcorpfin.2021.102010},
   url = {https://www.sciencedirect.com/science/article/pii/S0929119921001310},
   year = {2021}
}

@article{ChenCEO2021,
title = {{CEO} early-life disaster experience and stock price crash risk},
author = {Chen, Yangyang  and Fan, Qingliang and Yang, Xin and Zolotoy, Leon},
journal = {Journal of Corporate Finance},
volume = {68},
pages = {101928},
year = {2021},
issn = {0929-1199},
doi = {https://doi.org/10.1016/j.jcorpfin.2021.101928},
url = {https://www.sciencedirect.com/science/article/pii/S0929119921000493}
}
\end{filecontents}


\begin{document}

\citet{ChenCEO2021} \\\\

\citet{Chen2021} \\\\
\bibliographystyle{elsarticle-harv}
\bibliography{\jobname}

\end{document}

输出: 在此处输入图片描述

为什么不同的作者会显示a,b?由于这两个引文中的作者不是一个人,是否可以不显示a和b来显示引文?

答案1

正如 @moewe 在评论中指出的那样,elsarticle-harv围兜的款式确实不是在创建作者年份样式的引文标注时,请考虑名字。鉴于出版商 (Elsevier) 似乎同意这种设置,我认为您不必太担心这种结果不可接受 —— 至少对出版商而言。

我知道下面的类比可能并不完美,但我确信大多数读者很快就会意识到这一点Smith (2021a)Smith (2021b)需要不是由同一个人共同撰写。 和 、 和 等也是一样。Kim (2022a)因此Kim (2022b)Wang (2019a)Wang (2019b)的读者可能也不需要花很长时间就能弄清楚Chen et al. (2021a)Chen et al. (2021b),事实上,它们可能是由两个姓氏恰好是“陈”的人合著的。

然而,如果您认为确保不会产生混淆,即哪个名为“陈”的人支持给定的引文标注,绝对必要,我建议您按以下步骤操作:

  • 在 bib 条目中,将Chen, Jie和替换Chen, Yangyang{Chen, J.}{Chen, Y.}花括号很重要。

  • 在文档序言中,添加说明

    \defcitealias{Chen2021}{J. Chen et~al.\ (2021)}
    \defcitealias{ChenCEO2021}{Y. Chen et~al.\ (2021)}
    
  • 在文档正文中,将\citet{Chen2021}和的所有实例分别替换\citet{ChenCEO2021}\citetalias{Chen2021}\citetalias{ChenCEO2021}

如果您按照这种方式操作,并且如果参考书目包含“陈”在 2018 年发表的另一篇文章,那么您可能也应该对该篇文章进行类似的调整。


在此处输入图片描述

\documentclass[authoryear]{elsarticle}   

\begin{filecontents}[overwrite]{\jobname.bib}
@article{Chen2021,
   author  = {{Chen, J.} and Lasfer, Meziane and Song, Wei and Zhou, Si},
   title   = {Recession managers and mutual fund performance},
   journal = {Journal of Corporate Finance},
   volume  = {69},
   pages   = {102010},
   ISSN    = {0929-1199},
   DOI     = {https://doi.org/10.1016/j.jcorpfin.2021.102010},
   url     = {https://www.sciencedirect.com/science/article/pii/S0929119921001310},
   year    = {2021}
}
@article{ChenCEO2021,
   title   = {{CEO} early-life disaster experience and stock price crash risk},
   author  = {{Chen, Y.} and Fan, Qingliang and Yang, Xin and Zolotoy, Leon},
   journal = {Journal of Corporate Finance},
   volume  = {68},
   pages   = {101928},
   year    = {2021},
   issn    = {0929-1199},
   doi     = {https://doi.org/10.1016/j.jcorpfin.2021.101928},
   url     = {https://www.sciencedirect.com/science/article/pii/S0929119921000493}
}
\end{filecontents}

\defcitealias{Chen2021}{J. Chen et~al.\ (2021)}
\defcitealias{ChenCEO2021}{Y. Chen et~al.\ (2021)}
\bibliographystyle{elsarticle-harv}

\usepackage{xurl} % allow arbitrary line breaks in long URL strings

\begin{document}
\noindent
\citetalias{Chen2021}; \citetalias{ChenCEO2021}
\bibliography{\jobname}
\end{document}

相关内容