我如何修改我的 BibTeX 模板?

我如何修改我的 BibTeX 模板?

我正在使用 Elsevier 修改后的 BibTeX 模板;请参阅(由于太长所以提供链接)

\documentclass[12pt]{article}

\begin{document}

 For instance, 1-planarity cannot be characterized in 
terms of forbidden minors \cite{grigoriev2007algorithms}. 
For a graph with $n$ vertices, it is possible to determine in linear time 
whether the graph is planar or not \cite{hopcroft1974efficient}, even for the 
graphs formed from planar graphs 
by adding a single edge \cite{korzhik2013minimal}. 

\bibliographystyle{e}
\bibliography{my.bib}
\end{document}

我的.bib:

@article{grigoriev2007algorithms,
  title={Algorithms for graphs embeddable with few crossings per edge},
  author={Grigoriev, Alexander and Bodlaender, Hans L},
  journal={Algorithmica},
  volume={49},
  number={1},
  pages={1--11},
  year={2007},
  publisher={Springer}
}
 @article{hopcroft1974efficient,
  title={Efficient planarity testing},
  author={Hopcroft, John and Tarjan, Robert},
  journal={Journal of the ACM (JACM)},
  volume={21},
  number={4},
  pages={549--568},
  year={1974},
  publisher={ACM New York, NY, USA}
}
@article{korzhik2013minimal,
  title={Minimal obstructions for 1-immersions and hardness of 1-planarity testing},
  author={Korzhik, Vladimir P and Mohar, Bojan},
  journal={Journal of Graph Theory},
  volume={72},
  number={1},
  pages={30--71},
  year={2013},
  publisher={Wiley Online Library}
}

在此处输入图片描述

但我发现该杂志的要求如下(他们提供的BibTeX样式文档似乎不是套件要求),请参阅文件(即468198_LaTeX_DL_468198_01072021.zip)

在此处输入图片描述

主要区别如下:

  • 按作者姓氏和名字的顺序排列,姓氏在前,名字在前。
  • 最后一位作者以冒号而不是逗号结尾。
  • 卷号以粗体显示。
  • 年份放在最后,用括号括起来

我是 BibTeX 的初学者,目前手头只有一个模板。如果修改模板很困难,有没有类似的模板可用?我也看过一些其他模板,例如 abbrv 或 acm,但它们总是看起来差别太大

注意:我只是发现spmpsci.bst他们的文件没问题。

相关内容