论文投递经验


论文投递经验

论文研究方向编码

Open Access

分为Green和Gold

  • Green Open Access
    • 收费少
    • 有一个embargo period,在这个期间无法公开访问
    • 版权通常在出版商
  • Gold Open Access
    • 收费多
    • 可以立刻公开访问
    • 版权归属作者

embargo period

禁止期:在这里可以查询,比如NIM-A的Print ISSN0168-9002,在ISSN搜索框输入后,查询可得时间为24个月,即为2年。

ELSEVIER规则

规则在这里

  • Preprint
    • 作者可以在任何地方任何时间分享
    • 作者可以从preprint链接至正式发表版本
    • 作者可以使用接收的文章(accepted manuscript)替换在arXiv或RePEc上的preprint
    • preprint不能以任何方式加入或者润色是的更像最终版
  • Accepted Manuscript
    • 非商业的个人主页
    • 上传preprint到arXiv或RePEc

License: Elsevier的政策

  • 专有标题中的黄金开放获取文章提供商业和非商业知识共享许可之间的选择。
  • open archive中的内容使用Elsevier user license
  • green open access和接收的文章需要使用CC-BY-NC-ND并且按照共享规则内容

ELSEVIER的其它要求

写作注意事项

  • Abstract
    • 不标准或不常用的缩写需要避免,如果必要的话必须要在第一次出现的地方定义。
  • Acknowledgements
    • acknowledgements 在文章后面引用前面单独作为一节,不可放在标题页
  • 数学公式
    • 行内公式简单形式,使用/替代水平线
    • 变量使用斜体
    • 幂指数多使用exp

引用

Web引用

  • URL,最后一次接触日期需要提供
  • DOI,醉着姓名,日期等也可提供
  • 可以单独在引用列表后列出或者放入引用列表
    规则中提供的样例中最好的实现方式应该用misc

软件引用

  • 推荐软件应该像其它文献一样引用一遍复现和复用

arXiv规则

License

规则

  • CC BY: Creative Commons Attribution
    • 只要归属是作者,允许分发改编等各种操作。
    • 允许商用
  • CC BY-SA: Creative Commons Attribution-ShareAlike
    • 只要归属是作者,允许分发改编等各种操作。
    • 允许商用
    • 改编等后的版本需要按照同一个条款进行许可
  • CC BY-NC-SA: Creative Commons Attribution-Noncommercial-ShareAlike
    • 只要归属是作者,允许分发改编等各种操作。
    • 允许商用
    • 改编等后的版本需要按照同一个条款进行许可
  • CC BY-NC-ND: Creative Commons Attribution-Noncommercial-NoDerivatives
    • 只要归属是作者,允许分发复制等各种操作。
    • 允许商用,允许改编
  • arXiv.org perpetual, non-exclusive license
    • 有限权分发复用文章
    • 这个license适合作者自定义权限,放在文章的第一页;通常可能是资助你的基金有相关条款要求

在arxiv上的文章界面Download下面可以看到对应License的图标

提交

由于目前arxiv上使用的texlive版本为2020,可能一些包比较旧,需要手动加入新的cls文件,比如elsarticle,我提供一个Makefile文件示例,将elsarticle.cls拷贝至相应目录并打包

1
2
3
4
5
6
7
8
9
10
11
12
.PHONY:all
all: submit.zip

submit.zip: pmttestpublication/main.tex pmttestpublication/main.bbl
zip -x *.git* -r submit.zip pmttestpublication -i *.tex pmttestpublication/figures/*/*.pdf *.bbl *.cls
pmttestpublication/main.bbl: pmttestpublication/main.aux
cd pmttestpublication & bibtex $^
pmttestpublication/main.aux: pmttestpublication/main.tex
cd pmttestpublication & pdftex $^
pmttestpublication/elsarticle.cls: /opt/gentoo/usr/share/texmf-dist/tex/latex/elsarticle/elsarticle.cls
cp $^ $@

修改与回复

回复编辑意见

可以使用一些模板定义格式,比如下面创建一个sty文件reviewresponse.sty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
\ProvidesPackage{reviewresponse}[2022/10/18 Review Response v1.2.1]
% Author: Karl-Ludwig Besser
% Email: k.besser@tu-bs.de
% 20230429 Modify from https://github.com/klb2/review-response-template/blob/master/reviewresponse.sty

\RequirePackage{kvoptions}

\RequirePackage[breakable,skins]{tcolorbox}
\RequirePackage{xcolor}

%%% Colors
\definecolor{colorcommentfg}{RGB}{0,63,87}
\definecolor{colorcommentbg}{HTML}{e0f0f6}
\definecolor{colorcommentframe}{RGB}{0,112,155}
%\definecolor{colordark}{RGB}{0,63,87}
%\definecolor{colormedium}{RGB}{0,112,155}
%\definecolor{colorlight}{RGB}{102,180,211}
%\colorlet{colorcommentbg}{colorlight!20}

\colorlet{colorchangebg}{black!2}
\colorlet{colorchangeframe}{black!20}
%%%


%%% General Settings
\setlength{\parindent}{0pt}
\setlength{\parskip}{.3em plus .2em minus .3em}
\renewcommand{\baselinestretch}{1.5}

\widowpenalty10000
\clubpenalty10000
%%%

%%% Counters
\newcounter{reviewer@counter}
\setcounter{reviewer@counter}{0}
\newcounter{reviewcomment@counter}[reviewer@counter]
\setcounter{reviewcomment@counter}{0}
%%%

%%% Commands
\newcommand{\reviewer}[1]{
\clearpage
\refstepcounter{reviewer@counter}%
\section{#1}
}
%%%

%%% Blocks %%%
\newenvironment{generalcomment}{%
\begin{tcolorbox}[notitle, fonttitle={\bfseries}, coltitle={colorcommentfg}, colback={colorcommentbg}, colframe={colorcommentframe},]
}{\end{tcolorbox}}

\newenvironment{revcomment}[1][]{\refstepcounter{reviewcomment@counter}
\begin{tcolorbox}[adjusted title={Comment}, fonttitle={\bfseries}, colback={colorcommentbg}, colframe={colorcommentframe},coltitle={colorcommentbg},#1]
}{\end{tcolorbox}}

\newenvironment{revresponse}[1][]{%
\textbf{Response:} #1\par
}{\vspace{1em plus 0em minus 1em}}

\newenvironment{changes}{\begin{tcolorbox}[breakable,colback={colorchangebg}, colframe={colorchangeframe},enhanced jigsaw,]
}{\end{tcolorbox}}

% \newcommand{\printpartbibliography}[1]{\begin{refsegment}\nocite{#1}\printbibliography[heading=none,segment=\therefsegment]\end{refsegment}}

使用时在tex中引入,比如

1
2
3
4
5
6
7
8
9
10
11
12
\usepackage{reviewresponse}
\reviewer{Reviewer \#1}
\begin{generalcomment}
Reviewer's general comment
\end{generalcomment}
our response
\begin{revcomment}
Reviewer's specific comment 1
\end{revcomment}
\begin{revresponse}
our response for comment 1
\end{revresponse}

期刊缩写

期刊分区查询

JCR分区和中科院分区区别介绍


文章作者: greatofdream
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 greatofdream !
  目录