1. 初次提交
初次提交时, manuscript 提交的是 pdf 文件
2. 返修后提交
在经过返修之后需要提交的是注意一下几点:
-
此时提交的Blined manuscript ,虽然名字没变,但不能再提交pdf 文件, 而需要提交的是可编辑的源文件 .tex 文件(或者是word)
-
其他latex 编译是所需要的文件比如.bbl 文件, 选择类型是 latex supporting file, 编译需要的图片选择为 figure 。
-
自己latex 编译生成的 pdf 文件,上传类型选为supplementary material , 用作辅助参考的。
-
检查自己是否是匿名提交, 这包括 response_to reviewes, 中最后不能出现作者署名, 以及提交的latex中, author information, 以及论文末尾是否 author cotribution 中透露作者信息, 这些在双盲审阶段中,都应该被去除。
着重注意,下方 tips 中的内容.
We have received your manuscript submitted to our journal in PDF/PS format.
Unfortunately, we are unable to process your submission in this format.
Please log onto Editorial Manager as an author.
Go to the menu item "Submissions Sent Back to Author",
and then to the submission step 'attach files'.
Replace the existing file(s) with either Word or LaTeX file(s) and re-build the PDF.
You can then view your submission, and approve the changes.
在大修后,返回修改稿的时候,需要提交Latex文件;
返修提交时候,必须是匿名
Before we can further process it, you are kindly requested to
kindly remove the authors information in the manuscript and response to reviewer.
Please log onto Editorial Manager as an author.
3. latex 源代码提交的注意点
在将自己的 .tex 文件提交时, 其实就是将自己的 latex 提交到期刊网站上的服务器上,
他们会在自己的服务器上,编译我们的项目文件, 在提交的最后一步骤, 点击build pdf 时, 其实就是类似于我们在本地编译自己的latex 文件
3.1 参考文献的引用,
- 当我们上传 .tex 文件时,会上传其他的一些文件, 如下图所示,
- 之后在点击 build 后,一定要查看自己的文件在期刊服务器上 编译后生成的结果, 如果
出现如上图中所示的, 参考文献的应用, 没有正常显示时,
- 则首先检查自己的项目文件中是否存在 .bbl 文件, 其中的内容如下所示, 将这些内容复制到自己的 .tex 源文件中, 放置在
\end{document}
之前,
\begin{thebibliography}{10}
\bibitem{world2022world}
W.~H. Organization {\em et~al.}, ``World health statistics 2022: monitoring
health for the sdgs, sustainable development goals,'' 2022.
......
\end{thebibliography}
- 如果自己的项目文件中不存在. bbl 文件, 则根据自己的 .bib 文件生成 .bbl 文件, 然后再将其中的内容拷贝过去。
操作方式如下, 新建一个. tex 文件, 将下面的代码拷贝到其中, 然后运行生成.bbl 文件, 下面代码的解释可以参考这里 .bbl文件生成
\documentclass[preprint,review,12pt,authoryear]{elsarticle}
\begin{document}
\nocite{*}
\bibliographystyle{plain}
\bibliography{bibfile_name}
\end{document}
4.编辑指明的步骤
ref
- https://blog.csdn.net/qq_40721108/article/details/129000957