删除参考书目字段中的“页面”一词

删除参考书目字段中的“页面”一词

我想删除“页面“在格式化的书目条目中。我正在使用natbib书目样式unsrtnat。我有以下 MWE:

在此处输入图片描述

如果我们看看来源2,它有这个词页面,我想将其删除以与来源 1 保持一致。

在此处输入图片描述

平均能量损失

\documentclass[english,twoside,12pt]{extarticle}
\usepackage[numbers, sort&compress]{natbib} % Nice references.
\bibliographystyle{unsrtnat}            
\begin{document}
We cite \citet{erhan2006collaborative} \citet{exarchos2006protein}.
\bibliography{references}
\end{document}

references.bib文件包含:

@article{erhan2006collaborative,
    title={Collaborative filtering on a family of biological targets},
    author={Erhan, Dumitru and L'Heureux, Pierre-Jean and Yue, Shi Yi and Bengio, Yoshua},
    journal={Journal of Chemical Information and Modeling},
    volume={46},
    number={2},
    pages={626--635},
    year={2006},
    publisher={ACS Publications}
}

@inproceedings{exarchos2006protein,
    title={Protein classification using sequential pattern mining},
    author={Exarchos, Themis P. and Papaloukas, Costas and Lampros, Christos and Fotiadis, Dimitrios I.},
    booktitle={Engineering in Medicine and Biology Society, 2006. EMBS'06. 28th Annual International Conference of the IEEE},
    pages={5814--5817},
    year={2006},
    organization={IEEE}
}

相关内容