[ PROMPT_NODE_26312 ]
bibtex_formatting
[ SKILL_DOCUMENTATION ]
# BibTeX 格式化指南
关于 BibTeX 条目类型、必填字段、格式约定和最佳实践的综合指南。
## 概述
BibTeX 是 LaTeX 文档的标准参考文献格式。正确的格式可确保:
- 正确的引用渲染
- 一致的格式
- 与引用样式的兼容性
- 无编译错误
本指南涵盖所有常见的条目类型和格式规则。
## 条目类型
### @article - 期刊文章
同行评审期刊文章的**最常见条目类型**。
**必填字段**:
- `author`: 作者姓名
- `title`: 文章标题
- `journal`: 期刊名称
- `year`: 出版年份
**可选字段**:
- `volume`: 卷号
- `number`: 期号
- `pages`: 页码范围
- `month`: 出版月份
- `doi`: 数字对象标识符
- `url`: URL
- `note`: 附加说明
**模板**:
bibtex
@article{CitationKey2024,
author = {Last1, First1 and Last2, First2},
title = {Article Title Here},
journal = {Journal Name},
year = {2024},
volume = {10},
number = {3},
pages = {123--145},
doi = {10.1234/journal.2024.123456},
month = jan
}
**示例**:
bibtex
@article{Jumper2021,
author = {Jumper, John and Evans, Richard and Pritzel, Alexander and others},
title = {Highly Accurate Protein Structure Prediction with {AlphaFold}},
journal = {Nature},
year = {2021},
volume = {596},
number = {7873},
pages = {583--589},
doi = {10.1038/s41586-021-03819-2}
}
### @book - 书籍
**用于整本书**。
**必填字段**:
- `author` 或 `editor`: 作者或编辑
- `title`: 书名
- `publisher`: 出版商名称
- `year`: 出版年份
**可选字段**:
- `volume`: 卷号(如果是多卷书)
- `series`: 系列名称
- `address`: 出版商所在地
- `edition`: 版本号
- `isbn`: ISBN
- `url`: URL
**模板**:
bibtex
@book{CitationKey2024,
author = {Last, First},
title = {Book Title},
publisher = {Publisher Name},
year = {2024},
edition = {3},
address = {City, Country},
isbn = {978-0-123-45678-9}
}
**示例**:
bibtex
@book{Kumar2021,
author = {Kumar, Vinay and Abbas, Abul K. and Aster, Jon C.},
title = {Robbins and Cotran Pathologic Basis of Disease},
publisher = {Elsevier},
year = {2021},
edition = {10},
address = {Philadelphia, PA},
isbn = {978-0-323-53113-9}
}
### @inproceedings - 会议论文
**用于会议论文集中的论文**