我发现我的参考文献的标题不是斜体,而且姓氏在名字后面

我发现我的参考文献的标题不是斜体,而且姓氏在名字后面

我使用了哈佛风格的参考文献。我不知道为什么书名是斜体,而文章标题不是。此外,我怎么才能把姓氏放在名字前面?我必须引用每一篇文章,这样它们才能出现在参考文献中吗?在引用这本书时,如何在参考文献中添加编辑者?非常感谢。我是个初学者。

这是书目代码。

\begin{filecontents}{mybib.bib}
@article{Brockwell1,
author      = {Brockweill, P.J. and Gani, J. and Resnick, S.I.},
year        = {1982},
title       = {Birth, immigration and catastrophe process},
journal     = {Advances in Applied Probability},
volume      = {14},
pages       = {709-731},
}

@article{Brockwell2,
author      = {Brockweill, P.J.},
year        = {1986},
title       = {The extinction time of a general birth and death process with catastrophes},
journal     = {Journal of Applied Probability},
volume      = {23},
pages       = {851-858},
}

@book{Catastrophemodel,
author = {Patel, C.C.},
title = {Catastrophe modeling: a new approach to managing risk},
publisher = {Springer},
year = 2005,
}

@article{Pakes,
author      = {Pakes, A.G. and Trajstman, A.C. and Brockwell, P.J.},
year        = {1979},
title       = {A stochastic model for a replicating population subjected to mass emigration due to population pressure},
journal     = {Mathematical Biosciences},
volume      = {45},
number      = {1},
pages       = {137-157},
}
\end{filecontents}

以及主要代码。

\documentclass[12pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{filecontents}     
\usepackage[round]{natbib}
\begin{document}
Based on a birth-death process, a catastrophe process, in addition, involves catastrophes and emigrations, leading to the decline or growth of the populations subject to those factors. In past decades, the interest in developing and analysing the catastrophe process has been engaged, and emphasis and focus have been placed on mathematical models for that subject, especially the semi-stochastic models, i.e. models with deterministic growth and random catastrophes. For example, \citet{Pakes} proposed a semi-stochastic model which showed the expected time to extinction approaches $\infty$ as the initial size of the population approaches 0.

\newpage
\bibliographystyle{plainnat}  
\bibliography{mybib}
\end{document}

在此处输入图片描述

答案1

书籍标题(针对 类型的条目@book)和期刊名称(针对 类型的条目@article)以斜体显示的呈现方式取决于您采用的参考书目样式 - 此处:plainnat

正如你所注意到的,plainnat风格将名字姓氏。如果您希望所有作者的姓氏始终位于名字之前,请尝试 样式apalike。如果您只希望将第一作者的名字列为 ,surname, firstname将所有其他作者的名字列为firstname surname,请尝试 样式chicago。顺便说一句,每次切换参考书目样式时,您必须再运行 LaTeX、BibTeX 和 LaTeX 两次以完全传播所有更改。

每次引用\cite一篇文章,它都会被添加到参考书目中(当然,假设该条目存在于 bib 文件中)。如果您不想引用某篇文章但仍希望它出现在参考书目中,请使用命令\nocite

熟悉 BibTeX 的基础知识——这项投资非常值得。在命令窗口中发出命令“texdoc btxdoc”将调出一个名为“BibTeXing”的 16 页文档。它将告诉您很多有关哪些条目类型需要或识别各种字段类型的信息。

相关内容