0. 前言
2022-04-10 22:59:52,折腾了一个小时搞定,纠结了很久顺序的问题,其实文末的引用是 bib 自动生成的。粘贴一篇比较好的教程
1. 模板
就用 IEEE Conference 模板即可
https://www.ieee.org/content/dam/ieee-org/ieee/web/org/pubs/conference-latex-template_10-17-19.zip
1.1 代码替换
对于 LATEX,我们一般在谷歌学术或者知网导出
BibTex
格式的参考文献,而 IEEE 会议模版默认使用的参考文献为\bibitem
在同级目录下新建文件 ref.bib
,用来存放需要引用的文章信息
模板代码替换
\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}
直接替换为
\bibliographystyle{IEEEtran}
\bibliography{references}{}
1.2 bib 文件
在 ref.bib
中添加一篇参考文献
@article{creswell2018generative,
title={Generative adversarial networks: An overview},
author={Creswell, Antonia and White, Tom and Dumoulin, Vincent and Arulkumaran, Kai and Sengupta, Biswa and Bharath, Anil A},
journal={IEEE Signal Processing Magazine},
volume={35},
number={1},
pages={53--65},
year={2018},
publisher={IEEE}
}
1.3 正文中引用
原来不是手动输入框框 [],通过代码 \cite{creswell2018generative}
来引用,LaTex 会自动编号参考文献(原来不是手动地在后面添加)
2. 编译
还有关键的一步,编译需要选择 PDFLaTex ——>BibTex——>PDFLaTex——>PDFLaTex
3. 引用模板
3.1 会议
需要 author, booktile 填一下会议的名称,如果加了缩写,那么所有引用都加上缩写,个人喜欢加上缩写。Proceedings of the 是自己手动添加的,后面跟上会议名称即可,根据别人的引用情况,去掉了类似于“第几届”,“IEEE”之类的信息
title 填写文章标题,需要注意的是如果有大写,需要用 {}
括起来,这个 CAWA 其实是一个典型,甚至第一次提交(2022-04-14 16:47:01)忘记了大写 GPGPU,而最开始别人标题中的大写没有生效,后来发现是 {} 的原因
address 最好加上,正式一点,搜一下这个会议就能查到了。year 和 page 是一定要有的。page 要注意有些 bibtex 没有给完整,只有一页,需要自己去核对一下。
以目前的了解(2022-04-14 20:10:36),其他信息应该不作要求
@INPROCEEDINGS{7284091,
author={Lee, Shin-Ying and Arunkumar, Akhil and Wu, Carole-Jean},
booktitle={Proceedings of the International Symposium on Computer Architecture (ISCA)},
title={{CAWA}: Coordinated warp scheduling and Cache Prioritization for critical warp acceleration of GPGPU workloads},
address={Portland, OR, USA},
year={2015},
volume={},
number={},
pages={515-527}, doi={10.1145/2749469.2750418}}
3.2 期刊
title, author, pages, year 等信息和会议类似。
journal 填写期刊名称就行,根据全局的情况加上缩写。不过这个 Computing in Science & Engineering 的缩写为 Computing Sci. Eng.,感觉比较相似我就没加,之后核对一下。
volume, number 是期刊区别于会议的信息,要正确填写。期刊一般没有 address
@article{stone2010opencl,
title={{OpenCL}: A parallel programming standard for heterogeneous computing systems},
author={Stone, John E and Gohara, David and Shi, Guochun},
journal={Computing in Science \& Engineering},
volume={12},
number={3},
year={2010},
pages={66-73},
publisher={NIH Public Access}
}
3.3 书籍
除了这些信息,可能还需要别的
@book{farber2011cuda,
title={{CUDA} application design and development},
author={Farber, Rob},
year={2011},
publisher={Elsevier}
}
3.4 技术报告
@TECHREPORT{Krizhevsky09learningmultiple,
author = {Alex Krizhevsky},
title = {Learning multiple layers of features from tiny images},
institution = {},
year = {2009}
}
Reference
https://blog.51cto.com/u_13977270/3398538 IEEE 会议论文的参考文献