从 bib 文件中的 inproceedings 条目中删除“In”

从 bib 文件中的 inproceedings 条目中删除“In”

我正在 Overleaf 上撰写论文。对于我的会议参考文献,它在参考文献中显示“In”。例如:

“Hong Chang、Dit-Yan Yeung 和 Yimin Xiong。通过邻域嵌入实现超分辨率。在 IEEE 计算机学会计算机视觉和模式识别会议上,第 1 卷,第 1-8 页,2004 年。

我想删除参考文献中的“In”(“In IEEE Computer...”)。有人知道我该怎么做吗?

梅威瑟:

\documentclass[table]{sfuthesis}

\begin{document}
\backmatter%

\addtoToC{References}
\bibliographystyle{IEEEtran}
\bibliography{references}

我的参考文献文件的格式为.bib,如下所示:

@IEEEtranBSTCTL{IEEEexample:BSTcontrol,
 CTLdash_repeated_names = "no"
}

@inproceedings{chang2004super,
 title={Super-resolution through neighbor embedding},
 author={Chang, Hong and Yeung, Dit-Yan and Xiong, Yimin},
 booktitle={Computer Society Conference on Computer Vision and 
Pattern Recognition. CVPR 2004.},
 volume={1},
 pages={1--8},
 year={2004},
 organization={IEEE}
 }

相关内容