我在 Overleaf 中使用 IEEE 双列模板: https://www.overleaf.com/latex/templates/preparation-of-papers-for-ieee-sponsored-conferences-and-symposia/zfnqfzzzxghk
我引用如下:
\bibliographystyle{IEEEtranN}
\bibliography{references}
我的所有引用都很完美,除了下面的引用:
My text \cite{BORGES2018112}. More text.
在 bib 文件中:
@article{BORGES2018112,
title = {What's in a GitHub Star? Understanding Repository Starring Practices in a Social Coding Platform},
journal = {Journal of Systems and Software},
volume = {146},
pages = {112--129},
year = {2018},
issn = {0164--1212},
doi = {https://doi.org/10.1016/j.jss.2018.09.016},
url = {http://www.sciencedirect.com/science/article/pii/S0164121218301961},
author = {Hudson Borges and Marco [Tulio Valente]}
}
我不知道哪里出了问题。其余的引用都很好,但我一直不知道[?]
这个应该在哪里。
答案1
问题在于作者姓名中的括号。我将其更改为以下内容,现在可以正常工作:
@article{BORGES2018112,
title = {What's in a GitHub Star? Understanding Repository Starring Practices in a Social Coding Platform},
journal = {Journal of Systems and Software},
volume = {146},
pages = {112--129},
year = {2018},
issn = {0164--1212},
doi = {https://doi.org/10.1016/j.jss.2018.09.016},
url = {http://www.sciencedirect.com/science/article/pii/S0164121218301961},
author = {Hudson Borges and Marco {Tulio Valente}}
}