2020年3月18日 星期三

快速產生 bibitem 內容

Ref:
https://blog.csdn.net/zhuiqiuk/article/details/102996455
https://blog.csdn.net/u014435314/article/details/85697292


之前在寫latex的時候, 都會習慣另外寫一個 .bib 檔來放reference
可是有些投稿單位的template是用 bibitem, ex: IEEE Access

用人工的方式太累了, 就用自動的方式吧 XD

建立一個空白的tex檔, 然後寫入下面的資料

=====================================
\documentclass{article}
\begin{document}
\nocite{*}
\bibliography{references} % your bib file
\bibliographystyle{IEEEtran}
\end{document}
=====================================

然後使用 latex -> bibtex
就會出現一個 .bbl 的檔案, 裡面的語法就是 bibitem 的內容

接著就是複製貼上 XDDDD

沒有留言: