Contents

IEEE会议论文Latex模板的使用

Contents

注意,此处是会议论文模板的使用(期刊模板类似);解决的问题为外部bib文件的引用

注意此时参考文献只能够在tex文件内部编辑,比较麻烦。如果我们已经有了外部的bib文件,例如

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
@inproceedings{goodfellow2014generative,
	title={Generative Adversarial Nets},
	author={Goodfellow, Ian and Pouget-Abadie, Jean and Mirza, Mehdi and Xu, Bing and Warde-Farley, David and Ozair, Sherjil and Courville, Aaron and Bengio, Yoshua},
	booktitle={Advances in neural information processing systems},
	
	pages={2672--2680},
	year={2014},
	
	
}


@inproceedings{men2020controllable,
	title={Controllable Person Image Synthesis with Attribute-Decomposed GAN},
	author={Men, Yifang and Mao, Yiming and Jiang, Yuning and Ma, Wei-Ying and Lian, Zhouhui},
	booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
	
	pages={5084--5093},
	year={2020}
}

我们可以直接通过外部bib文件的引用的方式导入已有的参考文献。首先下载链接,打开bibtex文件夹,这里面包含了ieee的参考文献格式定义。将IEEEtran.bst复制到原文件夹中,并将外部bib文件复制到原文件夹中。此时只需要使用

1
2
3
%外部bib文件的引用
\bibliographystyle{IEEEtran}
\bibliography{references}

即可实现外部bib文件的引用