Advertisement

IEEE LaTeX模板使用BibTeX

阅读量:

我在撰写一篇IEEE期刊论文时,因为下载大型LaTeX编辑器如Laxtex十分麻烦,于是发现了 sharesharelatex 这个在线编辑器(https://www.sharelatex.com/),使用起来非常便捷。大多数来自Google Scholar的文献引用格式遵循BibTeX规范,而IEEE Transactions期刊通常采用的是BibItem格式。目前尚未找到可靠的自动化工具或网站来完成从Laxtex到BibItem文件格式转换。

使用方法

通过访问Google Scholar进行文献检索,在页面上单击并执行'Cite'按钮后选择并下载对应的BibTeX格式文件即可获取所需文献的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文件中。
  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}进行标注后,在正文中使用\cite{b1}进行标注后,在正文中使用\cite{b1}进行标注后

转载于:https://www.cnblogs.com/kxbk100/p/10583634.html

全部评论 (0)

还没有任何评论哟~