使用 bibtex 反转参考文献中第一作者的姓氏和首字母

使用 bibtex 反转参考文献中第一作者的姓氏和首字母

我正在使用 bibtex、elsarticle文档类和elsarticle-num-names参考书目样式。有没有办法让您的参考资料像这样:

Singer, A., Z. Schuss, D. Holcman, 2006.《惊天危机》第三部分:非光滑域和黎曼曲面,《统计物理杂志》122(3)491–509

代替

A. Singer, Z. Schuss, D. Holcman,《死里逃生,第三部分:非光滑域和黎曼曲面》,《统计物理杂志》122(3)(2006)491–509。

这是我的代码:

\documentclass[a4paper,12pt,preprint]{elsarticle}
\usepackage{lineno,hyperref}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{subfigure} 
\usepackage{amsmath,amsfonts,amsthm,amssymb}
\usepackage{mathtools} 
\usepackage{float}
\modulolinenumbers[5]
\usepackage{dsfont}
\usepackage{tabularx}
\usepackage{setspace}
\usepackage{lineno}
\usepackage{fancyhdr}

\pagestyle{fancy}
\thispagestyle{empty}

\biboptions{numbers,sort&compress}

\begin{document}

BLABLABLA \cite{singer2006narrowescape3}

\bibliographystyle{elsarticle-num-names} 
\bibliography{mybib} 

\end{document}

bib 文件mybib.bib包含以下条目:

@article{singer2006narrowescape3,
  title={Narrow escape, Part III: Non-smooth domains and Riemann surfaces},
  author={Singer, A and Schuss, Z and Holcman, D},
  journal={Journal of Statistical Physics},
  volume={122},
  number={3},
  pages={491--509},
  year={2006},
  publisher={Springer}
}

相关内容