Abbreviations of author and journal name of references in IEEE Transactions template

Abbreviations of author and journal name of references in IEEE Transactions template

    This article records how to solve the problem of author abbreviation and journal abbreviation of references in the template of IEEE Transactions.

0. The upper rendering

    In the template of IEEE Transactions, the required reference format is as follows. We found two characteristics:

insert image description here

1. 作者的名字是缩写的,但是姓不是缩写;
2. 期刊的名字是缩写+斜体的。

     This article will document how to achieve this effect.

1. How to set up the .bib file

     In the **.bib** file, the reference must first be set, that is, the .bib format of the reference is added. The specific steps include the following three steps:

 1. 在web of science或者百度学术或者谷歌学术中找到论文对应的doi。
 2. 在网站([https://www.doi2bib.org](https://www.doi2bib.org))中根据论文的doi生成对应的bib文件。
 3. 将该论文生成的bib文件拷贝到对应的.bib文件中。

     The illustration of the above 3 steps is as follows:

  1. The doi corresponding to the paper:
    insert image description here

  2. The bib corresponding to the paper doi:
    insert image description here

  3. Copy the bib of the paper into the .bib file:
    insert image description here

2. How to Abbreviate Author Names

     Find the following line of code in the latex file and modify it to the following form:

\bibliographystyle{
    
    ieeetr} 

3. How to realize the abbreviation of journal name

     In the .bib file, the full name of the journal is still written. Sometimes IEEE Transactions requires changing to an abbreviation. In this case, the following three steps need to be followed:

 1.[web of science](https://www-webofscience-com.libezproxy.must.edu.mo/wos/woscc/basic-search)中搜索相应的期刊的名字。
 2. 进入到期刊右边的“进一步了解”,找到期刊的缩写。
 3..bib文件中找到对应的  journal = {
    
    XXX},将XXX替换成刚刚搜索到的期刊的缩写名字。
 4. 重新编译.bib文件,这时就能看到作者名字和期刊名字都变成了缩写形式。

     The illustrations of the above four steps are as follows:

  1. Web of Science search journal name:
    insert image description here

  2. Click " 进一步了解" on the right:
    insert image description here

  3. Find the corresponding ISO Abbreviationabbreviation and copy the abbreviation to .bibthe file.
    insert image description here

  4. Modify the Bib file journal = {XXX}and manually fill in the ISO Abbreviation information just copied.
    insert image description here

  5. Recompile the .bib file (the compilation statement is: bibtex XXX) to see the abbreviated effect of the author's name and the journal name.

4. How to find meeting abbreviations

     Conference papers are generally collected by EI, then you need to go to the EI search website:

    EI website: https://www.engineeringvillage.com/search/quick.url
    Go to EI to search for papers, click Detailed
insert image description here
    and you can see the conference name and conference abbreviation.
insert image description here
    Additionally, some common meeting abbreviations are listed below:
insert image description here

    Links to references above:
1. [LaTeX] Adjust the format of references (References), including author abbreviations, line spacing, fonts, order of citation, etc. 2.
About journal abbreviations
3. Conference abbreviations in IEEE journal references
4. Abbreviations for journals or conferences commonly used in the field of machine vision

Guess you like

Origin blog.csdn.net/weixin_43981621/article/details/129637262