latex论文写作-(五)

latex论文写作-(五)
Bohao Zhao使用Overleaf快速管理参考文献(基于TIE格式要求)
前言
本人最近在使用 latex
语言写论文时,碰到了参考文献的格式问题(期刊样式是
IEEE Transactions on Industrial Electronics
)。其中使用
.bib
为后缀的文件做文献内容管理,通过在最后使用
\bibliographystyle{ieeetr}
自带的默认文献格式无法满足期刊的要求,因此希望能自定义一个满足指定期刊要求的文献风格文件来进行统一的参考文献管理,进而撰写此文以做记录。
期刊模版的参考文献要求
以下是期刊模板的原文要求,自行翻译。
Reference numbers are set flush left and form a column of their own, hanging out beyond the body of the reference. The reference numbers are on the line, enclosed in square brackets. In all references, the given name of the author or editor is abbreviated to the initial only and precedes the last name. Use them all; use et al. exceptionally if more than 6 author names were listed. Use commas around Jr., Sr., and III in names. Abbreviate conference titles [1]. When citing journals [2]–[11], provide the issue number, page range, volume number, DOI, year, and/or month if available. When referencing a patent [12], provide the day and the month of issue, or application. References may not include all information; please obtain and include relevant information. Do not combine references. There must be only one reference with each number. If there is a URL included with the print reference, it can be included at the end of the reference [13]. Authors are encouraged to include the DOI number for each reference. It’s the most important part of the reference. The DOI is like a digital fingerprint and it’s used to identify the article without mistakes. Other than books [14]–[17], capitalize only the first word in a paper title, except for proper nouns and element symbols. For papers published in translation journals, please give the English citation first, followed by the original foreign-language citation See the end of this document for formats and examples of common references. For a complete discussion of references and their formats, see “The IEEE Style Manual,” available as a PDF link off the Author Digital Toolbox main page.
重点:
- 姓名仅缩写为首字母在姓氏之前,如果作者超过6人则使用
et al
,在完整姓名后使用,
结束 - 缩写会议名称(一般期刊也要缩写,ISO格式)
- 引用期刊提供期号、页码范围、卷号、月份(有则写)
- 引用专利时提供专利发行或申请的日期和月份
- DOI号和URL手册上说最好要有,但为了节约纸张一般不写
Overleaf参考文献管理
统一管理模式
这里主要讲本人使用的文献管理方式,在 latex
语言最后加入以下代码:
1 | \begin{document} |
其中 \bibliographystyle{ieeetran}
是采用了 IEEE Trans
的风格的模板(根据自己的需求),需要额外在同级目录下载相关的
.bst
文件才能调用。
\bibliography{mybibtex.bib}
调用同级目录下的
mybibtex.bib
文件中你所存放所有相关的参考文献信息,具体信息格式后续展开说明,这样就可以进行一个基本参考文献的使用。
导入示例
(1)获取BibTex文件
以下面TIE的期刊文献示例:
在学术搜索引擎中可以查询到此期刊的DOI号为:10.1109/TIE.2023.3331138
由于本文方法的参考文献信息主要是 BibeTex
格式,在DOI转BibeTex的网站https://www.doi2bib.org/获取其
BibeTex
信息文本(最好是最新的内容),如下所示:
(2)导入到Overleaf
复制到自定义的 .bib
文件中,注意到我们不想要
url
,即可删掉此行,最后如下:
在论文中使用 \cite{Yu2024}
引用此文献(未引用的文献不会显示在参考列表中),即可得到:
(3)修改期刊缩写
由于IEEE TIE的期刊需要将引用期刊的全称变成缩写,因此我们可以在 Web of
Science 中找到对应期刊的 ISO 简写为
IEEE-ASME Trans. Mechatron.
,如下所示:
(4)定制参考文献
在 Overleaf 中找到 journal
属性,将对应的全称修改成我们上述得到的简称即可完成所需的样式。
最终的效果: