从期刊论文中查找引用样式

从期刊论文中查找引用样式

如何从此期刊引用格式中找到引用样式?我需要论文中的以下格式。 期刊引文格式

我下载了 jabref 并在 latex 中包含了具有参考书目样式的 bib 文件

\bibliographystyle{unsrt}

但无法得到如图所示的结果。我能知道如何在 latex 中以如图所示的格式进行书写吗?

答案1

假设您要biblatex(从您的关键字标签)管理您的参考文献,并且希望按数字顺序对参考文献进行排序,即姓氏在前,名字首字母在后(\DeclareNameAlias{default}{family-given}),那么您可以得到如下结果:

在此处输入图片描述

其中代码为:

\documentclass{article}
\usepackage[backend=bibtex, giveninits=true, style=ieee]{biblatex} % using biblatex with style style=ieee for sorting ref by numbering
\DeclareNameAlias{default}{family-given} % Print family name first
\addbibresource{reference.bib} % the file inside which references are stored 
\usepackage[hidelinks, colorlinks=true]{hyperref} % OPTIONAL
%
\begin{document}
%
\section{Introduction} \label{sec:intro}
In order to cite one reference, you can use cite command like this \cite{Doe_2020}. You can also cite two references like this \cite{Doe_2020,Tenis_2000}.
%
\printbibliography % list of references is printed here
\end{document}

reference.bib 文件的内容是(添加在 的同一主目录中main.tex

@Book{Doe_2020,
  author    = {John Doe},
  publisher = {John Wiley},
  title     = {Differential equations : an introduction to modern methods and applications},
  year      = {2020},
  address   = {New Jersey},
  isbn      = {9780471651413},
  keywords  = {Differential equations},
  language  = {In English},
}

@Article{Tenis_2000,
  author  = {Michael Tenis},
  journal = {Jounal of Energy},
  title   = {New article about something},
  year    = {2000},
  month   = aug,
  number  = {7},
  pages   = {66--88},
  volume  = {2},
}

编辑:bibtex为了使用和 获得相同的结果(参考数字排序和作者姓氏在前) ,您可以使用以下natbib样式:\bibliographystyle{acm}

\documentclass{article}
\usepackage[square,numbers]{natbib}
\bibliographystyle{acm}
\usepackage[hidelinks, colorlinks=true]{hyperref} % OPTIONAL
%
\begin{document}
%
\section{Introduction}
In order to cite one reference, you can use cite command like this \cite{Doe_2020}. You can also cite two references like this \cite{Doe_2020,Tenis_2000}.
%
\bibliography{reference} % list of references is printed here
\end{document}

输出如下

在此处输入图片描述

相关内容