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