Latex-参考文献注意事项

添加位置

在文章主体内容最后、 \end{document} 之前添加

\begin{document}
%%% 此处省略了主体
{
\bibliographystyle{IEEEtran}
\bibliography{mybib}
}

\end{document}

\bibliographystyle{}参数

LaTeX 标准选项及其样式共有以下8种:

  • plain,按字母的顺序排列,比较次序为作者、年度和标题.
  • unsrt,样式同plain,只是按照引用的先后排序.
  • alpha,用作者名首字母+年份后两位作标号,以字母顺序排序.
  • abbrv,类似plain,将月份全拼改为缩写,更显紧凑.
  • ieeetr,国际电气电子工程师协会期刊样式.
  • acm,美国计算机学会期刊样式.
  • siam,美国工业和应用数学学会期刊样式.
  • apalike,美国心理学学会期刊样式.

注:我们一般用 ieeetr (IEEEtran)。

详细说明:
在这里插入图片描述

bib文件的要求

一般都是在谷歌上直接搜索文章后引用,为了避坑,这里罗列一下引用的正确步骤:

  1. 谷歌学术–搜索你要的文章,点击查看所有版本:
    在这里插入图片描述

在这里插入图片描述
注意:1.arXiv简介:简单来说,为了防止自己的idea在论文被收录前被别人剽窃,我们会将预稿上传到arvix作为预收录,因此这就是个可以证明论文原创性(上传时间戳)的文档收录网站。
2.多版本可引用选择引用量最高的。

  1. 找到正确的引用版本后,点击引用符号,选择 BibTeX:
    在这里插入图片描述
  2. 弹跳到一个网页,复制里面的内容,粘贴到论文写作文件夹中 my_bib.bib文件
    在这里插入图片描述
    4.原文中引用:
~\cite{yin2017multi}

注意事项

1 期刊和会议,保留哪几项?

IEEE Transactions on Big Data

期刊开头是@article,需要保留 title、author、journal、year这4项,例如:

@article{du2018differential,
	title={Differential privacy preserving of training model in wireless big data with edge computing},
	author={Du, Miao and Wang, Kun and Xia, Zhuoqun and Zhang, Yan},
	journal={IEEE Transactions on Big Data},
	year={2018}
}

会议开头是@inproceedings,需要保留 title、author、booktitle、pages、year这5项,例如:

@inproceedings{fredrikson2015model,
	title={Model inversion attacks that exploit confidence information and basic countermeasures},
	author={Fredrikson, Matt and Jha, Somesh and Ristenpart, Thomas},
	booktitle={Proceedings of ACM CCS},
	pages={1322--1333},
	year={2015}
}

期刊名称首字母都要大写

如下:

@article{zhou2019effective,
	title={Effective feature learning and fusion of multimodality data using stage-wise deep neural network for dementia diagnosis},
	author={Zhou, Tao and Thung, Kim-Han and Zhu, Xiaofeng and Shen, Dinggang},
	journal={Human Brain Mapping},
	volume={40},
	number={3},
	pages={1001--1016},
	year={2019},
}

2 期刊不用缩写,会议要缩写

2.1 SP

在这里插入图片描述
比如上图显示了会议的简称(缩写),当发现自己引用的会议是这样时:

@inproceedings{melis2019exploiting,
	title={Exploiting unintended feature leakage in collaborative learning},
	author={Melis, Luca and Song, Congzheng and De Cristofaro, Emiliano and Shmatikov, Vitaly},
	booktitle={2019 IEEE Symposium on Security and Privacy (SP)},
	pages={691--706},
	year={2019},
	organization={IEEE}
}

显然,这里的 booktitle={2019 IEEE Symposium on Security and Privacy (SP)} 又写了全称又写了简称,而且还多了参数 organization={IEEE},修改后:

@inproceedings{melis2019exploiting,
	title={Exploiting unintended feature leakage in collaborative learning},
	author={Melis, Luca and Song, Congzheng and De Cristofaro, Emiliano and Shmatikov, Vitaly},
	booktitle={Proceedings of IEEE S\&P},
	pages={691--706},
	year={2019},
}

注意:
当出版社是IEEE或ACM :booktitle的格式是Proceedings of (出版社) (会议简称)
其他出版社booktitle的格式是Proceedings of (会议简称)

2.2 CVPR

Proceedings of IEEE/CVF CVPR,别把CVF忘了。

@inproceedings{szegedy2016rethinking,
	title={Rethinking the inception architecture for computer vision},
	author={Szegedy, Christian and Vanhoucke, Vincent and Ioffe, Sergey and Shlens, Jon and Wojna, Zbigniew},
	booktitle={Proceedings of IEEE/CVF CVPR},
	pages={2818--2826},
	year={2016}
}

NeurIPS

非常神奇的是,谷歌索引下来的全称是Advances in Neural Information Processing Systems(而且标为article),而CCF会议里面把它称为:Annual Conference on Neural Information Processing Systems,以CCF为准,其引用格式如下:

@inproceedings{han2022card,
	title={Card: Classification and regression diffusion models},
	author={Han, Xizewen and Zheng, Huangjie and Zhou, Mingyuan},
	journal={Proceedings of NeurIPS},
	volume={35},
	pages={18100--18115},
	year={2022}
}

3 CoRR要删掉

从谷歌复制下来的形式可能是这样:

@article{long2018understanding,
	title={Understanding membership inferences on well-generalized learning models},
	author={Long, Yunhui and Bindschaedler, Vincent and Wang, Lei and Bu, Diyue and Wang, Xiaofeng and Tang, Haixu and Gunter, Carl A and Chen, Kai},
	journal={CoRR, arXiv:1802.04889},
	year={2018}
}

需要稍作修改,去掉CoRR,改正后:

@article{long2018understanding,
	title={Understanding membership inferences on well-generalized learning models},
	author={Long, Yunhui and Bindschaedler, Vincent and Wang, Lei and Bu, Diyue and Wang, Xiaofeng and Tang, Haixu and Gunter, Carl A and Chen, Kai},
	journal={arXiv:1802.04889},
	year={2018}
}

标题中的简写(如DNN)要大写

但是会发现即使大写,也会自动变成小写,这时候就需要加一个函数了:\text{DNN}
在这里插入图片描述

问好、冒号后面要大写:

@inproceedings{guan2022you,
	title={Are you stealing my model? \text{S}ample correlation for fingerprinting deep neural networks},
	author={Guan, Jiyang and Liang, Jian and He, Ran},
	journal={Proceedings of NeurIPS},
	volume={35},
	pages={36571--36584},
	year={2022}
}

@inproceedings{jia2022zest,
	title={A Zest of LIME: \text{T}owards Architecture-Independent Model Distances},
	author={Jia, Hengrui and Chen, Hongyu and Guan, Jonas and Shamsabadi, Ali Shahin and Papernot, Nicolas},
	booktitle={Proceedings of ICLR},
	year={2022}
}

持续更新

  • 6
    点赞
  • 21
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 4
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

学渣渣渣渣渣

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值