zoukankan      html  css  js  c++  java
  • springer模板中的参考文献引用次序问题

    今天发现springer引用文献默认是按照作者首字母排序,即使在导言区使用usepackage[numbers]{natbib},那么你文中的参考文献序号顺序不是按行文顺序来的。

    解决办法:

    • Find the file spbasic.bst on your computer. Create a copy of this file and call the copy, say, spbasic_unsort.bst.

    • Open the file spbasic_unsort.bst in a text editor.

    • Find the two lines that start with SORT (note: uppercase is important), and comment out -- or simply delete -- both of these lines.

    • Save the file spbasic_unsort.bst either in the directory that contains your main tex file or in a directory that's searched by your tex distribution. If you choose the latter method, be sure to also update the filename database of your TeX distribution.

    • In your main tex file, change the instruction ibliographystyle{spbasic} to ibliographystyle{spbasic_unsort}. Then, rerun LaTeX, BibTeX, and LaTeX twice more to fully propagate all changes.

      notion:

      One of the instructions said, "Find the two lines that start with SORT ...". Please look for lines 1572 and 1625

           If removing lines starting with SORT does not work, that's probably because you did not remove temporary files created by LaTeX

  • 相关阅读:
    WCF实现上传图片功能
    C#中String.Empty、NULL与""三者的区别
    C#中equal与==的区别
    static 关键字的使用,静态和非静态类的区别
    C#索引器
    C# 接口的隐式与显示实现说明
    Python文件处理
    Python3.X与urllib
    python中if __name__ == '__main__'
    Python中的random模块
  • 原文地址:https://www.cnblogs.com/qixianyu/p/7086259.html
Copyright © 2011-2022 走看看