哪种书目风格是这样的?

哪种书目风格是这样的?

我想创建Bibtex如下格式的参考书目:

[1] Author: \textit{title} journal abbreviations
\textbf{vol}, pages (year)

输出


[1] 作者:标题,J.Ab,70, 100-200 (2017)


是否有合适的样式文件?

更新:(根据 Johannes_B 的评论)

本书的书目格式如下:

  [1] Author: \textit{title} Book series, 
      vol. 25, publisher, pages (year)

例子:

\documentclass{birkjour}

\begin{document}

In \cite{1} and \cite{2} we have:
$$a^2+b^2=c^2$$
\bibliographystyle{siam}    %must be changed to a benefit style 
\bibliography{biblio}
\end{document}

哪里biblio.bib

@article{1,
 title={first article},
 author={Name},
 journal={journal of geometry},
 volume={18},
 number={1},
 pages={229--238},
 year={2010}
  }

@article{2,
 title={second article},
 author={Name},
 journal={journal of geometry},
 volume={18},
 number={2},
 pages={239--248},
 year={2010}
  }

谢谢。

答案1

你看过链接中的例子了吗在哪里可以找到书目样式的集合? spiebib.bst看起来相当接近。

更新:风格splncs.bst如你所愿。

相关内容