在Google Scholar获得的文献引用格式一般是BibTex的,而IEEE Transactions的模板默认用的是BibItem。目前没有什么自动化的BibTeX转BibItem的工具或网站,只能使用BibTeX命令将.bib格式文件转化成.bbl文件,.bbl文件的内容就是BibItem格式了。
下面介绍使用TeX Live 2017 + Visual Studio Code + LaTeX Workshop,方便地进行文献管理和引用。
@article{kim2015analyzing, title={Analyzing User Awareness of Privacy Data Leak in Mobile Applications}, author={Kim, Youngho and Oh, Tae and Kim, Jeongnyeo}, journal={Mobile Information Systems}, volume={2015}, year={2015}, publisher={Hindawi Publishing Corporation} }
将以上信息添加到references.bib文件中,文件名随意,与.tex文件在同一目录。
在IEEE Transactions模板中,默认的引用文献是这样写的:
\begin{thebibliography}{1} \bibitem{IEEEhowto:kopka} H.~Kopka and P.~W. Daly, \emph{A Guide to \LaTeX}, 3rd~ed.\hskip 1em plus 0.5em minus 0.4em\relax Harlow, England: Addison-Wesley, 1999. \end{thebibliography}
把这一部分删掉,加上两行:
\bibliography{references}{} \bibliographystyle{IEEEtran}
编辑好tex文件之后,Ctrl+S保存就会自动编译,在文本上右键,点击LaTeX Workshop: All actions,然后选择View PDF in new tab就可以在右边查看编译生成好的pdf了。