latex - How to order citations by appearance using BibTeX? - Stack Overflow
この記事がわかりやすい
方法は3つある
1. unsrt bibliography style というオプションを使う
2. 自分自身でmakebstツールというのを使ってbibliography styleをデザインする
3. biblatexパッケージを使って、オプションを使う
他に調べていて、
plan bibliography styleというのを使えという記事もあった
そこで
\section*{References}
\bibliographystyle{plain}
\bibliographystyle{unsrt}
\bibliography{reference}
のようにして、参考文献のsectionを用意したが、うまくいかない・・・
実は、plainとunsrtを読み込む順番で結果が変わるっぽい
(我ながら、よく解決できたなw)
\section*{References}
\bibliographystyle{unsrt}
\bibliographystyle{plain}
\bibliography{reference}
これで、原稿本文に登場した順番に参考文献の順番が並ぶ