使用 Science.bst 模板文件,无法正确显示期刊文章的参考文献

问题描述

我正在使用来自 https://www.sciencemag.org/sites/default/files/Science.bst

的 Science .bst 文件

并且生成的引用不符合 Science 引用样式,请参阅 https://www.sciencemag.org/authors/instructions-preparing-initial-manuscript

具体来说,只显示“pages”字段的第一页,不显示文章标题

MWE:

\documentclass{article}

\usepackage{filecontents}
\begin{filecontents}{reference.bib}
@article{blumenstock2016fighting,title={fighting Poverty with Data},author={Blumenstock,Joshua Evan},journal={Science},volume={353},number={6301},pages={753-754},year={2016},publisher={American Association for the Advancement of Science},}
\end{filecontents}

\begin{document}
\cite{blumenstock2016fighting}

\bibliography{reference}
\bibliographystyle{Science}

\end{document}

给予

[1] J. E. Blumenstock,科学 353,753(2016 年)。

解决方法

Science.bst 的以下补丁解决了这个问题。

https://gist.github.com/luna983/d53f9c4ca52b52661bc863498966a8ca/revisions

  • 在第 812 行:删除 first.page
  • 在第 1038 行之后:添加一行 format.title "title" output.check

MWE 的输出现在是

[1] J. E. Blumenstock,用数据战胜贫困,科学 353,753-754(2016 年)。

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...