如何使用 BibTeX 通过 IEEEtran 在参考文献列表中的作者姓名后跳转新行?

如何使用 BibTeX 通过 IEEEtran 在参考文献列表中的作者姓名后跳转新行?

我正在写一篇期刊论文,我需要制作一份参考文献清单,如下:

enter image description here

在我的参考文献列表中,作者姓名后,我想添加一个新行并缩进 1 厘米。在每个文章名称或书籍名称后,我想添加一个新行。

我正在使用 IEEEtran 文档样式和 Bibtex。我不知道如何像照片中那样更改我的参考格式。有人能帮我吗?

\documentclass[12pt, twocolumn]{IEEEtran} 

\usepackage{graphicx,graphics}
\usepackage{amsmath,amsfonts,mathrsfs,amssymb,dsfont}
\usepackage{booktabs}
\usepackage{cite}

\begin{document}

\section{Introduction}
I want to cite this paper \cite{manwell2010wind}
\bibliographystyle{IEEEtran}
\bibliography{mybib}

\end{document}

我的 bibtex;

@book{manwell2010wind,
  title={Wind energy explained: theory, design and application},
  author={Manwell, James F and McGowan, Jon G and Rogers, Anthony L},
  year={2010},
  publisher={John Wiley \& Sons}
}

相关内容