latex 中的参考文献

latex 中的参考文献

我怎样才能在乳胶中写出下面的参考文献?

我只想举一个例子来告诉我如何创建空格。例如在第一个参考中:如何在第二行和第三行创建空格。

任何帮助都将非常感激!

在此处输入图片描述

答案1

由于没有编号,因此文中必须用名称和年份来标识参考文献。因此,我们可以猜测此参考书目是采用哈佛格式引用的。

\documentclass{article}
\usepackage{harvard}
\begin{document}
\cite{Amos80}
\bibliographystyle{agsm}
\bibliography{test}
\end{document}

这是文件 test.bib。

@Article{Amos80,
  author =       {Amos, D. E.},
  title =        {Computation of Exponential Integrals},
  journal =      toms,
  year =         {1980},
  volume =       {6},
  number =       {3},
  pages =        {365--377}
}

哈佛

相关内容