本文主要记录论文写作中的一些经验(主要是可以量化的)
- 论文引用
论文引用: 关于会议的区别可以看这个:https://www.zhihu.com/question/20820000 会议的格式经常会乱,这里举一个会议的例子,以下两个都是直接从官网复制下来的论文bibtex,将被同时在一个论文里引用,因此格式需要统一一下:
@INPROCEEDINGS{10611018,
author={Chen, Long and Sinavski, Oleg and Hünermann, Jan and Karnsund, Alice and Willmott, Andrew James and Birch, Danny and Maund, Daniel and Shotton, Jamie},
booktitle={2024 IEEE International Conference on Robotics and Automation (ICRA)},
title={Driving with LLMs: Fusing Object-Level Vector Modality for Explainable Autonomous Driving},
year={2024},
volume={},
number={},
pages={14093-14100},
}
@inproceedings{liang2023code,
title={Code as policies: Language model programs for embodied control},
author={Liang, Jacky and Huang, Wenlong and Xia, Fei and Xu, Peng and Hausman, Karol and Ichter, Brian and Florence, Pete and Zeng, Andy},
booktitle={Proceedings of the IEEE International Conference on Robotics and Automation},
pages={9493--9500},
year={2023},
}
- booktitle不统一,为了统一格式,加上”Proceedings of the“,可以把第一个改为“Proceedings of the 2024 IEEE International Conference on Robotics and Automation (ICRA)“
- 一些会议会有一个“(会议缩写)”,这个可写可不写,可以统一不写,那么第一个会议就再改为”Proceeding of the 2024 IEEE International Conference on Robotics and Automation“
- 标题一般统一题目的第1个字母大写,但是对于专有名词,比如说llm,gpt,或者作者自己起的一个专用名字也要求保留原格式,有一个简单的方法,直接使用双重花括号,title={{}}, 改为title={{Driving with LLMs: Fusing Object-Level Vector Modality for Explainable Autonomous Driving}}
- 标题中,:后的第一个字母大写
- 标题中词,-连接的两个词可以都首字母大写,也可以都小写
- 有一些会议没有页码,比如NeurIPS,ICLR 最后,上面的例子修改结果:
@INPROCEEDINGS{10611018,
author={Chen, Long and Sinavski, Oleg and Hünermann, Jan and Karnsund, Alice and Willmott, Andrew James and Birch, Danny and Maund, Daniel and Shotton, Jamie},
booktitle={Proceedings of the 2024 IEEE International Conference on Robotics and Automation},
title={{Driving with LLMs: Fusing Object-Level Vector Modality for Explainable Autonomous Driving}},
year={2024},
volume={},
number={},
pages={14093-14100},
}
@inproceedings{liang2023code,
title={{Code as policies: Language model programs for embodied control}},
author={Liang, Jacky and Huang, Wenlong and Xia, Fei and Xu, Peng and Hausman, Karol and Ichter, Brian and Florence, Pete and Zeng, Andy},
booktitle={Proceedings of the IEEE International Conference on Robotics and Automation},
pages={9493--9500},
year={2023},
}
关于自动化:
- 难点在于如何识别“专有名词”,特别是作者自己发明的词