如何重新定义作者引用参考文献的第二行缩进?

如何重新定义作者引用参考文献的第二行缩进?

我在用elsarticle-harv.bst用于作者引用参考文献。但是,第二行的缩进值有点小,例如: 在此处输入图片描述

\documentclass[12 pt,a4paper,twoside] {article}
\usepackage{natbib}   
\usepackage[UKenglish]{babel}
\usepackage[lining]{libertine}
\usepackage[ T1 ]{fontenc}
\begin{document}
\cite{Tsuji:2008} bla bla ... \\
Bla bla ... \citep[see e.g][]{Shirgaonkar:2009} .

\bibliographystyle{elsarticle-harv}
\bibliography{reffile} 
\end{document}

参考文件reffile.bib例如:

@ARTICLE{Tsuji:2008,
  author  = {Tsuji, T. and Yabumoto, K. and Tanaka, T.},
  title   = {Spontaneous structures in three-dimensional bubbling gas-fluidized bed by paralled {DEM-CFD} coupling simulation},
  journal = {  Powder Technology },
  year    = { 2008  },
  volume  = { 184  },
  pages   = {  132-140 },
  number  = { }
  }

@ARTICLE{Shirgaonkar:2009,
  author  = {Shirgaonkar, A. A. and Maclver, M. A. and Patankar, N. A.},
  title   = {A new mathematical formulation and fast algorithm for fully resovled simulation of self-propulsion},
  journal = {Journal of Computional Physics},
  year    = { 2009  },
  volume  = { 228  },
  pages   = {  2366-2390 },
  number  = { }
  }

那么如何增加缩进呢?

答案1

您可以使用该natbib包(我想无论如何都推荐使用它elsarticle-harv),然后执行

\setlength{\bibhang}{5em}

增加缩进量5em(大得可笑)。

相关内容