我正在使用 elsarticle 模板处理 latex 文件。MWE 如下所示。
\documentclass[review]{article}
\usepackage[hyperfootnotes=false,raiselinks=true,colorlinks,linktoc=all]{hyperref}
\begin{filecontents}{mysuperbib.bib}
@article{hwang2008heat,
title={Heat transfer with dimple/protrusion arrays in a rectangular duct with a low Reynolds number range},
author={Hwang, Sang Dong and Kwon, Hyun Goo and Cho, Hyung Hee},
journal={International journal of heat and fluid flow},
volume={29},
number={4},
pages={916--926},
year={2008},
publisher={Elsevier}
}
@article{hwang2010local,
title={Local heat transfer and thermal performance on periodically dimple-protrusion patterned walls for compact heat exchangers},
author={Hwang, Sang Dong and Kwon, Hyun Goo and Cho, Hyung Hee},
journal={Energy},
volume={35},
number={12},
pages={5357--5364},
year={2010},
publisher={Elsevier}
}
\end{filecontents}
\begin{document}
\section{Bibliography styles}
In another study, Hwang et al. \cite{hwang2010local} measured the local distribution of heat transfer coefficient and thermal performance in a channel with a staggered array of dimples and protrusions. The studied Reynolds numbers and geometrical characteristics of dimples and protrusions were similar to the previous study. Their results showed that various secondary flows were generated from the dimple and protrusion coexist. It must be mentioned that the measured local heat transfer coefficients in Hwang et al. \cite{hwang2008heat,hwang2010local} studies, were used to validate the numerical results in the current research.
\bibliographystyle{model2-names}
\bibliography{mysuperbib}
\end{document}
但问题出在参考列表中。我想生成具有以下配置的参考列表:
Hwang, SD、Kwon, HG 和 Cho, HH,2008 年。低雷诺数范围内矩形管道内凹陷/凸起阵列的传热。国际热流与流体流动杂志 29,916–926。
而不是这样:
Hwang, SD, Kwon, HG, Cho, HH,2008 年。低雷诺数范围内矩形管道内凹陷/凸起阵列的传热。国际热流与流体流动杂志,第 29 卷,第 916-926 页。
确实,我想在最后一位作者的名字前加上“and”。该怎么做?
日志和 blg 文件:
答案1
要在姓氏前添加“and”,请复制文件model2-names.bst
,重命名并将第 454 行从
"," *
到
" " * bbl.and *
并在您的.tex 文件中,调整\bibliographystyle{model2-names}
为您选择的新文件名。