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 = {###}
}