1) 将某个参考文献全部去掉,可以去掉前面的『@』
例子
@article{##,
author = {###},
title = {###},
journal = {###},
year = {###},
type = {###}
}
修改为
article{##,
author = {###},
title = {###},
journal = {###},
year = {###},
type = {###}
}
2)如果将某个参考文献中的某一个项目去掉,可以在这一行前加『//』
例如去掉type这个属性
@article{##,
author = {###},
title = {###},
journal = {###},
year = {###},
type = {###}
}
修改为
@article{##,
author = {###},
title = {###},
journal = {###},
year = {###},
//type = {###}
}