我仅对论文集获得了未定义的 latex 引用。文章运行良好:
\usepackage{amssymb}
\usepackage{biblatex} %Imports biblatex package
\addbibresource{cas-refs.bib} %Import the bibliography file
\clearpage
\printbibliography
诉讼示例:
@inproceedings{xyz,
title={Hwllow world},
author={bill, john},
booktitle={2021 IEEE International},
pages={1--4},
year={2021},
organization={IEEE}
}
我试图简短地举个例子,但如果需要更多细节,请告诉我。
编辑:我注意到,如果我在 cas-refs.bib 中仅保留“inproceedings”,效果会很好。
编辑 2:看来我犯了一个错误。看来问题出在 entery 上:
@article{Wang2022,
title={Multiscale transunet + + : dense hybrid U-Net with transformer for medical image segmentation},
author={JOUR, Wang, Bo , Wang, ·Fan, Dong, Pengwei, Li, ·Chongyi},
journal={https://doi.org/10.1007/s11760-021-02115-w},
year={2022}
}
如果我删除一些作者,它就可以正常工作。似乎它最多只能处理三个作者。我不知道为什么:
@article{Wang2022,
title={Multiscale transunet + + : dense hybrid U-Net with transformer for medical image segmentation},
author={JOUR},
journal={https://doi.org/10.1007/s11760-021-02115-w},
year={2022}
}
答案1
文件bibtex
格式使用and
逗号而不是逗号作为作者分隔符。因此您的输入:
@article{Wang2022,
title={Multiscale transunet + + : dense hybrid U-Net with transformer for medical image segmentation},
author={JOUR, Wang, Bo , Wang, ·Fan, Dong, Pengwei, Li, ·Chongyi},
journal={https://doi.org/10.1007/s11760-021-02115-w},
year={2022}
}
格式不正确,需要重写如下:
@article{Wang2022,
author = {Wang, Bo and Wang, Fan and Dong, Pengwei and Li, Chongyi},
journal = {Signal, Image and Video Processing},
month = jan,
number = {6},
pages = {1607--614},
title = {Multiscale transunet + +: dense hybrid U-Net with transformer for medical image segmentation},
volume = {16},
year = {2022}}
该项目还包含一些伪造的字符和不正确的信息。我使用 DOI 检索了该条目。
您的条目看起来inproceedings
不起作用的原因可能是因为它们恰好位于文件中的这个条目之后.bib
,而由于错误该文件未被完全读取。