admin管理员组

文章数量:1559114

最近在写ieee的论文,就为了参考文献不愿意下载那么大的laxtex,发现了一个在线的latex editor https://www.sharelatex/ , 发现还挺好用的。
在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}引用后,正文中的参考文献才会显示引用的条目,否则编译无数次也没有效果?

转载于:https://wwwblogs/kxbk100/p/10583634.html

本文标签: 模板