IEEE LaTeX模板使用BibTeX

最近在寫IEEE的論文,就爲了參考文獻不願意下載那麼大的LaxTex,發現了一個在線的LaTeX editor https://www.sharelatex.com/, 發現還挺好用的。
在Google Scholar獲得的文獻引用格式一般是BibTex的,而IEEE Transactions的模板默認用的是BibItem。目前沒有什麼自動化的BibTeX轉BibItem的工具或網站。

使用方法

  1. 在Google Scholar搜索到的文獻結果,點擊下面的“Cite”,然後點擊“BibTeX”即可得到類似如下的文獻信息
@article{b1, // b1爲正文引用時的名字
  title={Reading behavior in the digital environment: Changes in reading behavior over the past ten years},
  author={Liu, Ziming},
  journal={Journal of documentation},
  volume={61},
  number={6},
  pages={700--712},
  year={2005},
  publisher={Emerald Group Publishing Limited}
}
  1. 將以上信息添加到側邊欄中的references.bib文件中,文件名隨意,與.tex文件在同一目錄
  2. 在IEEE Transactions模板中,默認的引用文獻是這樣寫的
\begin{thebibliography}{00}
\bibitem{b1} G. Eason, B. Noble, and I. N. Sneddon, ``On certain integrals of Lipschitz-Hankel type involving products of Bessel functions,'' Phil. Trans. Roy. Soc. London, vol. A247, pp. 529--551, April 1955.
\bibitem{b2} J. Clerk Maxwell, A Treatise on Electricity and Magnetism, 3rd ed., vol. 2. Oxford: Clarendon, 1892, pp.68--73.
\bibitem{b3} I. S. Jacobs and C. P. Bean, ``Fine particles, thin films and exchange anisotropy,'' in Magnetism, vol. III, G. T. Rado and H. Suhl, Eds. New York: Academic, 1963, pp. 271--350.
\bibitem{b4} K. Elissa, ``Title of paper if known,'' unpublished.
\bibitem{b5} R. Nicole, ``Title of paper with only first word capitalized,'' J. Name Stand. Abbrev., in press.
\bibitem{b6} Y. Yorozu, M. Hirano, K. Oka, and Y. Tagawa, ``Electron spectroscopy studies on magneto-optical media and plastic substrate interface,'' IEEE Transl. J. Magn. Japan, vol. 2, pp. 740--741, August 1987 [Digests 9th Annual Conf. Magnetics Japan, p. 301, 1982].
\bibitem{b7} M. Young, The Technical Writer's Handbook. Mill Valley, CA: University Science, 1989.
\end{thebibliography}
  1. 將上述部分換成如下代碼
\bibliographystyle{IEEEtran}
\bibliography{references}{}
  1. 點擊重新編譯即可看到效果

注意

正文中必須要使用\cite{b1}引用後,正文中的參考文獻纔會顯示引用的條目,否則編譯無數次也沒有效果😢

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章