总结第一次写SCI论文的经验

工具:

工欲善其事,必先利其器

ps:当然,我认为最重要不是依赖这些工具,而是积累写作经验,最终脱离工具也能写出一篇优秀的SCI论文。

1.词汇:有道词典,欧路词典

2.语法:Grammarly

3.润色:QuillBot

4.续写:

5.查重:

Waiting to add…

References

Problem 1:Compile \citet{xxx} shows “(author ?) [x]”

For IEEE Journal or Trans Papers:

Overleaf gives some samples of the Natbib bibliography styles.

Solution:

  • Check whether import the package: \usepackage[author, year, numbers, ...]{natbib}
  • Check the correct bibstyle file is loaded: \bibliographystyle{IEEEtranN} (Notice: “IEEEtranN.bst” not “IEEEtran.bst”, you can download in IEEEtran)
1
2
3
4
5
6
7
8
9
% \usepackage[author, year, numbers, ...]{natbib}
% [numbers] only shows 'author et al.' and index '[x]'
% For more details, please see "https://www.overleaf.com/learn/latex/Bibliography_management_with_natbib"
\usepackage[numbers]{batbib}
...
\bibliographystyle{IEEEtranN}
\bibliography{ref_name}
...
\citet{xxx, ...}

Compile result: XXX et al. [x], …