插入图片显示Runaway的方法
\usepackage[pdftex]{graphicx}
\usepackage{eqparbox}
加上即可
参考文献显示Runaway的方法、
出错是这样的
tex正文中是这样写的
\bibliographystyle{IEEEtran}
\bibliography{IEEEabrv,Mylib.bib}
bib文件里这样就会Runaway
@article{Campos_2021,
doi = {10.1109/tro.2021.3075644},
url = {https://doi.org/10.1109%2Ftro.2021.3075644},
year = 2021,
month = {dec},
publisher = {Institute of Electrical and Electronics Engineers ({IEEE})},
volume = {37},
number = {6},
pages = {1874--1890},
author = {Carlos Campos and Richard Elvira and Juan J. Gomez Rodriguez and Jose M. M. Montiel and Juan D. Tardos},
title = {{ORB}-{SLAM}3: An Accurate Open-Source Library for Visual, Visual{\textendash}Inertial, and Multimap {SLAM}
},
journal = {{IEEE} Transactions on Robotics}
}
当删掉IEEE中规定的不必要的字段
@article{Campos_2021,
year = 2021,
month = {dec},
publisher = {Institute of Electrical and Electronics Engineers ({IEEE})},
volume = {37},
number = {6},
pages = {1874--1890},
author = {Carlos Campos and Richard Elvira and Juan J. Gomez Rodriguez and Jose M. M. Montiel and Juan D. Tardos},
title = {{ORB}-{SLAM}3: An Accurate Open-Source Library for Visual, Visual{\textendash}Inertial, and Multimap {SLAM}
},
journal = {{IEEE} Transactions on Robotics}
}
要求字段一般为(Journal)
@article{zheng2012reidentification,
title={Reidentification by relative distance comparison},
author={Zheng, Wei-Shi and Gong, Shaogang and Xiang, Tao},
journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
volume={35},
number={3},
pages={653--668},
year={2012}
}
要求字段一般为(Conference)
@inproceedings{huang2017densely,
title={Densely connected convolutional networks},
author={Huang, Gao and Liu, Zhuang and Van Der Maaten, Laurens and Weinberger, Kilian Q},
booktitle={Computer Vision and Pattern Recognition},
pages={4700--4708},
year={2017}
}