使用LaTex写IEEE trans 论文的参考文献(bib)

LaTex批量添加参考文献方法

1、.tex文件同目录下新建reference.bib文件
2、添加包

\usepackage{cite}

3、在latex代码参考文献部分添加语句

% references section
\bibliographystyle{IEEEtran}
\bibliography{reference.bib}

4、把需要引用的文献bib格式的参考文献复制到bib文件里,可以直接通过百度学术、谷歌学术、web of science导出,例如

@article{2016Deep,
  title={Deep Convolutional Neural Networks for Computer-Aided Detection: CNN Architectures, Dataset Characteristics and Transfer Learning},
  author={ Shin, H. C.  and  Roth, H. R.  and  Gao, M.  and  Le, L.  and  Xu, Z.  and  Nogues, I.  and  Yao, J.  and  Mollura, D.  and  Summers, R. M. },
  journal={IEEE Transactions on Medical Imaging},
  volume={35},
  number={5},
  pages={1285-1298},
  year={2016},
}

5、正文引用文献

\cite{2016Deep}

bib格式参考文献

期刊
@article{IEEEexample:articleetal,
author = “F. Delorme and others”,
title = “Butt-jointed {DBR} Laser With 15 {nm} Tunability Grown
in Three {MOVPE} Steps”,
journal = “Electron. Lett.”,
volume = “31”,
number = “15”,
year = “1995”,
pages = “1244-1245”
}

会议
@inproceedings{IEEEexample:conf_typical,
author = “R. K. Gupta and S. D. Senturia”,
title = “Pull-in Time Dynamics as a Measure of Absolute Pressure”,
booktitle = “Proc. {IEEE} International Workshop on
Microelectromechanical Systems ({MEMS}'97)”,
address = “Nagoya, Japan”,
month = jan,
year = “1997”,
pages = “290-294”
}

书籍
@book{IEEEexample:book_typical,
author = “B. D. Cullity”,
title = “Introduction to Magnetic Materials”,
publisher = “Addison-Wesley”,
address = “Reading, MA”,
year = “1972”
}

你可能感兴趣的:(研究生,latex)