• 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

  • 相关阅读:
    生成15位或者4位随机数 (主要用于微信支付订单号)
    支付签名 MD5Util 排序工具类
    JVM垃圾回收(GC)
    JVM内存区域
    Java实现经典七大经典排序算法
    Java设计模式之装饰者模式
    Java设计模式之单例模式
    提前批笔试一道算法题的Java实现
    Java设计模式之工厂模式
    文件上传和下载
  • 原文地址:https://www.cnblogs.com/qixianyu/p/7086259.html
Copyright © 2020-2023  润新知