![bibtex を使用して参考文献の最初の著者の姓とイニシャルを反転する](https://rvso.com/image/335495/bibtex%20%E3%82%92%E4%BD%BF%E7%94%A8%E3%81%97%E3%81%A6%E5%8F%82%E8%80%83%E6%96%87%E7%8C%AE%E3%81%AE%E6%9C%80%E5%88%9D%E3%81%AE%E8%91%97%E8%80%85%E3%81%AE%E5%A7%93%E3%81%A8%E3%82%A4%E3%83%8B%E3%82%B7%E3%83%A3%E3%83%AB%E3%82%92%E5%8F%8D%E8%BB%A2%E3%81%99%E3%82%8B.png)
私は bibtex、elsarticle
ドキュメント クラス、elsarticle-num-names
参考文献スタイルを使用しています。参照を次のようにする方法はありますか。
シンガー、A.、Z. シュス、D. ホルクマン、2006年。危機一髪、パートIII:非滑らかな領域とリーマン面、統計物理学ジャーナル122(3)491-509
の代わりに
A. Singer、Z. Schuss、D. Holcman、「Narrow escape、パートIII:非滑らかな領域とリーマン面」、Journal of Statistical Physics 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}
}