有什么方法可以从参考书目中删除重复的术语 IEEE?

有什么方法可以从参考书目中删除重复的术语 IEEE?

示例代码

\begin{document}
% ....
% References
{\small
\bibliographystyle{ieeetr}
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{BIBLIOGRAPHY}
\bibliography{Thesis_Main}
}
\end{document}

Bib 文件

@inproceedings{ref20,
  title={Passive RFID for intelligent transportation systems},
  author={Ali, Kashif and Hassanein, Hossam},
  booktitle={2009 6th IEEE Consumer Communications and Networking Conference},
  pages={1--2},
  year={2009},
  organization={IEEE}
}

@inproceedings{ref21,
  title={A security and privacy enhanced protection scheme for secure 900MHz UHF RFID reader on mobile phone},
  author={Park, Namje and Lee, Haedong and Kim, Howon and Won, Dongho},
  booktitle={2006 IEEE International Symposium on Consumer Electronics},
  pages={1--5},
  year={2007},
  organization={IEEE}
}

输出

在此处输入图片描述

但是我的导师要求我从文本中黄色标记位置删除术语“IEEE”,该术语出现在黄色标记之前的任何位置(示例显示为红色下划线)。有什么方法可以从参考书目中删除重复的术语 IEEE?

答案1

我无法对帖子发表评论。这不是答案,但可能有用:使用编辑器中查找和替换键查找 .bib 文件,然后将 organization 替换为 %organization。我之前遇到过同样的问题,以下技巧很有效。您可以随时恢复组织字段。谁有权限,请将其移至评论部分。

相关内容