LaTeX引用参考文献——BibTex参考文献格式大全

所有类型的参考文献格式都整理在这里了,转载请声明出处!!!

参考文献类型 + 例子说明
@article{RN01,
  author = {Peter Adams}, 
  title = {The title of the work},
  journal = {The name of the journal},
  year = 1993,
  number = 2,
  pages = {201-213},
  month = 7,
  note = {An optional note}, 
  volume = 4
}
期刊杂志的论文
  • 必要域: author, title, journal, year.
  • 可选域: volume, number, pages, month, note.
@book{RN02,
  author = {Peter Babington}, 
  title = {The title of the work},
  publisher = {The name of the publisher},
  year = 1993,
  volume = 4,
  series = 10,
  address = {The address},
  edition = 3,
  month = 7,
  note = {An optional note},
  isbn = {3257227892}
}
公开出版书籍
  • 必要域: author/editor, title, publisher, year.
  • 可选域: volume/number, series, address, edition, month, note.
@booklet{RN03,
  title = {The title of the work},
  author = {Peter Caxton}, 
  howpublished = {How it was published},
  address = {The address of the publisher},
  month = 7,
  year = 1993,
  note = {An optional note}
}
无出版商或作者的图书
  • 必要域: title.
  • 可选域: author, howpublished, address, month, year, note.
@conference{RN04,
  author = {Peter Draper}, 
  title = {The title of the work},
  booktitle = {The title of the book},
  year = 1993,
  editor = {The editor},
  volume = 4,
  series = 5,
  pages = 213,
  address = {The address of the publisher},
  month = 7,
  organization = {The organization},
  publisher = {The publisher},
  note = {An optional note}  
}
等价于 inproceedings
  • 必要域: author, title, booktitle, year.
  • 可选域: editor, volume/number, series, pages, address, month, organization, publisher, note.
@inbook{RN05,
  author = {Peter Eston}, 
  title = {The title of the work},
  chapter = 8,
  pages = {201-213},
  publisher = {The name of the publisher},
  year = 1993,
  volume = 4,
  series = 5,
  address = {The address of the publisher},
  edition = 3,
  month = 7,
  note = {An optional note}
}
书籍的一部分内容
  • 必要域: author/editor, title, chapter and/or pages, publisher, year.
  • 可选域: volume/number, series, type, address, edition, month, note.
@incollection{RN06,
  author = {Peter Farindon}, 
  title = {The title of the chapter},
  booktitle = {The title of the book},
  publisher = {The name of the publisher},
  year = 1993,
  editor = {The editor},
  volume = 4,
  series = 5,
  chapter = 8,
  pages = {201-213},
  address = {The address of the publisher},
  edition = 3,
  month = 7,
  note = {An optional note}
}
书籍中带独立标题的章节
  • 必要域: author, title, booktitle, publisher, chapter, year.
  • 可选域: editor, volume/number, series, type, chapter, pages, address, edition, month, note.
@manual{RN07,
  title = {The title of the work},
  author = {Peter Gainsford}, 
  organization = {The organization},
  address = {The address of the publisher},
  edition = 3,
  month = 7,
  year = 1993,
  note = {An optional note}
}
技术文档
  • 必要域: title.
  • 可选域: author, organization, address, edition, month, year, note.
@mastersthesis{RN08,
  author = {Peter Harwood}, 
  title = {The title of the work},
  school = {The school of the thesis},
  year = 1993,
  address = {The address of the publisher},
  month = 7,
  note = {An optional note}
}
硕士论文
  • 必要域: author, title, school, year.
  • 可选域: type, address, month, note.
@misc{RN09,
  author = {Peter Isley}, 
  title = {The title of the work},
  howpublished = {How it was published (e.g., URL link)},
  month = 7,
  year = 1993,
  note = {An optional note}
}
其他(如超链接, URL link的例子:{\url{https://www.google.com}})
  • 必要域: title
  • 可选域: author, howpublished, month, year, note.

举例如下

@misc{RN08,

   title = {{LinkedIn}},

   organization = {\url{https://www.linkedin.com/}},

   note = {accessed on January 1, 2021},

}

灵活一点,有些域可以替换的。只要编译过后显示的是想要的格式就行了。

@phdthesis{RN10,
  author = {Peter Joslin}, 
  title = {The title of the work},
  school = {The school of the thesis},
  year = 1993,
  address = {The address of the publisher},
  month = 7,
  note = {An optional note}
}
博士论文
  • 必要域: author, title, year, school.
  • 可选域: address, month, keywords, note.

@inproceedings{RN11,
  title = {The title of the work},
  year = 1993,
  editor = {Peter Kidwelly},
  volume = 4,
  series = 5,

  page = 100-102,
  address = {The address of the publisher},
  month = 7,
  organization = {The organization},
  publisher = {The name of the publisher},
  note = {An optional note}
}

会议论文(集)
  • 必要域: title, page, publisher, volume/number, year.
  • 可选域: editor, volume/number, series, address, month, organization, note.
@techreport{RN12,
  author = {Peter Lambert}, 
  title = {The title of the work},
  institution = {The institution that published},
  year = 1993,
  number = 2,
  address = {The address of the publisher},
  month = 7,
  note = {An optional note}
}
教育,商业机构的技术报告
  • 必要域: author, title, institution, year.
  • 可选域: type, number, address, month, note.
@unpublished{RN13,
  author = {Peter Marcheford}, 
  title = {The title of the work},
  note = {An optional note},
  month = 7,
  year = 1993
}
未出版的论文,图书
  • 必要域: author, title, note.
  • 可选域: month, year.

 

 

 

LaTeX中添加参考文献可以按照以下步骤进行操作: 1. 首先,需要建立一个.bib文件,用于存储参考文献的信息。可以在谷歌学术上搜索文献,并点击文献条目下方的引用图标,选择BibTeX格式,将引用信息复制到.bib文件中。 2. 在LaTeX文档中添加以下代码,设置参考文献的显示格式: ``` \bibliographystyle{样式文件名} ``` 3. 在正文中需要引用参考文献的位置,使用以下代码插入参考文献: ``` \bibliography{参考文献文件名} ``` 4. 在正文中需要引用具体参考文献的位置,使用以下代码引用: ``` \cite{文献ID} ``` 其中,样式文件名是指参考文献的显示格式,可以选择现有的样式文件,如spbasic.bst或unsrt.bst,也可以根据需要自定义样式文件。 参考文献文件名是指存储参考文献信息的.bib文件的文件名,需要与第2步中的文件名保持一致。 文献ID是在.bib文件中每个文献条目的第一行位置,用于唯一标识该文献。 请注意,添加参考文献需要多次编译LaTeX文档,首先运行LaTeX编译器,然后运行BibTeX编译器,最后再运行两次LaTeX编译器,以确保参考文献引用和显示正确。 希望这些信息对您有所帮助!\[1\]\[2\]\[3\] #### 引用[.reference_title] - *1* *2* [「 LaTex 」 写论文,如何插入参考文献讲解](https://blog.csdn.net/Robot_Starscream/article/details/103864174)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [Latex插入参考文献的方法(两种全)](https://blog.csdn.net/weixin_44378800/article/details/109905695)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值