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.

 

 

 

  • 116
    点赞
  • 412
    收藏
    觉得还不错? 一键收藏
  • 8
    评论
对于 LaTeX 中的参考文献引用BibTeX 是一个常用的工具。以下是使用 BibTeX 引用参考文献的一般步骤: 1. 创建一个 .bib 文件,该文件将包含您的参考文献条目。每个条目应以 `@` 开头,然后是条目类型(如 `@article`、`@book` 等),以及一些相关字段,如作者、标题、年份等。例如: ``` @article{Smith2020, author = {Smith, John}, title = {A Study on Topic X}, journal = {Journal of Science}, year = {2020}, } ``` 2. 在 LaTeX 文档中导入 BibTeX 数据库。使用 `\bibliography{filename}` 命令指定您的 .bib 文件的文件名(不包括扩展名)。例如:`\bibliography{references}`。 3. 在正文中要引用参考文献的位置,使用 `\cite{key}` 命令引用相应条目。其中,`key` 是您在 .bib 文件中为该条目指定的标识符。例如:`\cite{Smith2020}`。 4. 编译 LaTeX 文档。为了正确生成参考文献列表和正确的引用格式,您需要进行多次编译。一般情况下,首先运行 LaTeX 编译器,然后运行 BibTeX 编译器,最后再运行两次 LaTeX 编译器。 5. 在您希望显示参考文献列表的位置,使用 `\bibliographystyle{style}` 命令选择参考文献格式样式,并使用 `\bibliography{filename}` 命令生成参考文献列表。例如:`\bibliographystyle{plain}\bibliography{references}`。 这是一个基本的引用参考文献的流程,您可以根据需要选择不同的样式和格式来满足您的要求。
评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值