1、LaTeX Error: Something's wrong--perhaps a missing \item. output.bbl
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ... l.23 \end{thebibliography} Try typing <return> to proceed. If that doesn't work, type X <return> to quit.
<inserted text>
$
l.109 .../dx.doi.org/10.1007/978-3-030-32226-7_80}
I've inserted a begin-math/end-math symbol since I think
you left one out. Proceed, with fingers crossed.
@CONFERENCE{Yuan_miccai_2019_multiview,
title = {Automatic Radiology Report Generation Based on Multi-view Image Fusion and Medical Concept Enrichment},
ISBN = {9783030322267},
ISSN = {1611-3349},
url = {http://dx.doi.org/10.1007/978-3-030-32226-7_80},
DOI = {10.1007/978-3-030-32226-7_80},
booktitle = {Medical Image Computing and Computer Assisted Intervention – MICCAI 2019},
publisher = {Springer International Publishing},
author = {Yuan, Jianbo and Liao, Haofu and Luo, Rui and Luo, Jiebo},
year = {2019},
pages = {721–729}
}
将其修改为(只对url和DOI中的下划线前面添加了‘\’):
@CONFERENCE{Yuan_miccai_2019_multiview,
title = {Automatic Radiology Report Generation Based on Multi-view Image Fusion and Medical Concept Enrichment},
ISBN = {9783030322267},
ISSN = {1611-3349},
url = {http://dx.doi.org/10.1007/978-3-030-32226-7\_80},
DOI = {10.1007/978-3-030-32226-7\_80},
booktitle = {Medical Image Computing and Computer Assisted Intervention – MICCAI 2019},
publisher = {Springer International Publishing},
author = {Yuan, Jianbo and Liao, Haofu and Luo, Rui and Luo, Jiebo},
year = {2019},
pages = {721–729}
}
3、IEEE Transactions系列期刊添加bib格式的参考文献,给引用添加超链接
# 第一步:下载期刊的模版,IEEE Journal LaTex模版地址
https://template-selector.ieee.org/secure/templateSelector/publicationType
# 第二步:下载bib格式文件,即**.bst,IEEE LaTeX Bibliography Files模版地址
https://www.ieee.org/conferences/publishing/templates.html
## 注意,若是IEEE Transactions系列的期刊,一般用IEEEtran.bst这个参考文献格式
# IEEEtran.bst is the official BibTeX style for authors of the Institute of
# Electrical and Electronics Engineers (IEEE) Transactions journals and
# conferences.
# 第三步,将IEEEtran.bst文件上传到overleaf
# 第四步,在\end{document}添加如下命令,如下所示:
\bibliographystyle{IEEEtran}
\bibliography{refs} # 这里的refs需要换成自己的文件名
# 注意refs是overleaf中存在所有bib参考文献的文件名,即refs.bib,所以这里是refs
\end{document}
# 第五步(optional),如何给引用(如参考文献,图标)添加超链接——在导言区添加如下指令:
% add hyperlinks to references
\makeatletter
\let\NAT@parse\undefined
\makeatother
\usepackage{hyperref}
# 隐层超链接的颜色
\hypersetup{hidelinks=true}
# 第六步,在\end{document}之前添加
\bibliographystyle{IEEEtran} # 加载IEEEtran.bst格式
\bibliography{refs} # 记载ref.bib文件
# 完整的结构
\documentclass[journal,twoside,web]{ieeecolor}
\usepackage{tmi}
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
% add hyperlinks to references
\makeatletter
\let\NAT@parse\undefined
\makeatother
\usepackage{hyperref}
\begin{document}
主要内容
\bibliographystyle{IEEEtran}
\bibliography{refs}
\end{document}
% #0 turns off the forced use of "et al."
% #1 enables
FUNCTION {default.is.forced.et.al} { #1 }
% The maximum number of names that can be present beyond which an "et al."
% usage is forced. Be sure that num.names.shown.with.forced.et.al (below)
% is not greater than this value!
% Note: There are many instances of references in IEEE journals which have
% a very large number of authors as well as instances in which "et al." is
% used profusely.
FUNCTION {default.max.num.names.before.forced.et.al} { #3 }
% The number of names that will be shown with a forced "et al.".
% Must be less than or equal to max.num.names.before.forced.et.al
FUNCTION {default.num.names.shown.with.forced.et.al} { #1 }
(2)备注:
FUNCTION {default.is.forced.et.al} { #1 } % 开启使用"et al."功能,默认为0,其中1为开启
FUNCTION {default.max.num.names.before.forced.et.al} { #3 } % 超过3个作者,则显示N个作者+et al
FUNCTION {default.num.names.shown.with.forced.et.al} { #1 } % 上面N对应这里的1,即只显示第一个作者+et al,换句话说,当作者数量超过3时,只显示第一个作者+et al
@ARTICLE{miccai-2024-sei,
title={Structural Entities Extraction and Patient Indications Incorporation for Chest X-ray Report Generation},
author={{Kang Liu and Zhuoqi Ma and Xiaolu Kang and Zhusi Zhong and Zhicheng Jiao and Grayson Baird and Harrison Bai and Qiguang Miao}},
year={2024},
journal={CoRR},
volume={abs/2405.14905},
doi={10.48550/arXiv.2405.14905},
eprint={2405.14905},
archivePrefix={arXiv},
primaryClass={eess.IV}
}
方法二:手动修正每份参考文献
将不想显示的作者换成“others”,如下所示:
@ARTICLE{miccai-2024-sei,
title={Structural Entities Extraction and Patient Indications Incorporation for Chest X-ray Report Generation},
author={Kang Liu and others},
year={2024},
journal={CoRR},
volume={abs/2405.14905},
doi={10.48550/arXiv.2405.14905},
eprint={2405.14905},
archivePrefix={arXiv},
primaryClass={eess.IV}
}