cover letter and response letter

cover letter and response letter在此之前先区分投稿CoverLetter,修改稿CoverLetter和ResponseLetter,前两个是写给编辑或者TopicEditor,后者是写给Reviwer。一般来说在提交稿件时我们会附带一封CoverLetter主要是一些客套话跟编辑说的。修改稿CoverLetterDearProfessor***:(***指的是负责你论文的编辑,不知道名字就写Editor)    Onbehalfofmyco-authors,we

大家好,又见面了,我是你们的朋友全栈君。

在此之前先区分投稿Cover Letter,修改稿Cover Letter和Response Letter,前两个是写给编辑或者Topic Editor,后者是写给Reviwer。一般来说在提交稿件时我们会附带一封Cover Letter主要是一些客套话跟编辑说的。
修改稿Cover Letter

Dear Professor *** :(***指的是负责你论文的编辑,不知道名字就写Editor)
    On behalf of my co-authors, we thank you very much for giving us an opportunity to revise our manuscript, we appreciate editor and reviewers very much for their positive and constructive comments and suggestions on our manuscript entitled “your paper name” (ID: ####). We have studied reviewer’s comments carefully and have made revision which marked with different colors in the paper. We have tried our best to revise our manuscript according to the comments. Attached please find the revised version, which we would like to submit for your kind consideration. We would like to express our great appreciation to you and reviewers for comments on our paper. Looking forward to hearing from you. Thank you and best regards.

Yours sincerely,


Corresponding author: …

E-mail: …
Tel: …
Address: …

Response Letter

Dear Editors and Reviewers:
    Thank you for your letter and for the reviewers’ comments concerning our manuscript entitled “your paper name” (ID: ####). Those comments are all valuable and very helpful for revising and improving our paper, as well as the important guiding significance to our researches. We have studied comments carefully and have made correction which we hope meet with approval. Revised portion are marked with different colors in the paper. The main corrections in the paper and the responds to the reviewer’s comments are as flowing:

Reviewer #1:

  1. Response to comment:(XXXXXXX审稿人的意见总结)

Response:XXXXXX

Reviewer #2:

    We tried our best to improve the manuscript and made some changes in the manuscript. These changes will not influence the content and framework of the paper.
    And here we did not list the changes but marked marked with different colors in revised paper.
    We appreciate for Editors/Reviewers’ warm work earnestly, and hope that the correction will meet with approval. Once again, thank you very much for your comments and suggestions。

其他一些需要注意的:

逐条意见回答,切忌一定不能有遗漏
针对不同的问题有下列几个礼貌术语可适当用用:
We are very sorry for our negligence of ………
We are very sorry for our incorrect writing ………
It is really true as Reviewer suggested that……
We have made correction according to the Reviewer’s comments.
We have re-written this part according to the Reviewer’s suggestion
As Reviewer suggested that……
Considering the Reviewer’s suggestion, we have ……
最后特意感谢一下这个审稿人的意见:
Special thanks to you for your good comments.
Reviewer #2:
同上述
Reviewer #3:
××××××
Other changes:

  1. Line 60-61, the statements of “……” were corrected as “…………”
  2. Line 107, “……” was added
  3. Line 129, “……” was deleted
    ××××××
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/136887.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • STUN 原理理解「建议收藏」

    STUN 原理理解「建议收藏」STUN原理理解STUN简介SimpleTraversalofUDPoverNATs,NAT的UDP的简单穿越,是一种网络协议。是客户机-服务器的一种协议,由RFC3489定义。该协议定义了一些消息格式,大体上分为Request/Response。这个协议主要作用就是可以用来在两个处于NAT路由器之后的主机之间建立UDP通信。它允许位于NAT后的客户端找出自己的公网地址,确定自己…

    2022年7月16日
    21
  • MyBatis中的JdbcType映射介绍

    Java项目涉及到数据库交互,以往常用的是JDBC,现在则有Hibernate、Mybatis等这些持久化支持。 项目中用到了MyBatis,和JDBC最显著的区别,就是SQL语句配置化,通过xml文件定义SQL语句,当然JDBC也可以将SQL配置化,需要定制开发,MyBatis则直接支持这种方法。 官方对于MyBatis的介绍,MyBatisisafirstclas…

    2022年4月5日
    86
  • 线程通信(ITC)

    线程通信(ITC)为什么要通信通信是人的基本需求。而进程作为人的发明,自然脱离不了人的习性,也有通信需求。如果进程之间不进行任何通信,那么进程所能完成的任务就要大打折扣。例如,父进程在创建子进程后,通常须要监督子进程的状态,以便在子进程没有完成给定的任务时,可以再创建一个子进程来继续。这就需要父子进程间通信。而线程间的通信则需要更多。由于一个进程通常包括多个线程,这多个线程之间因资源共享自然地就存在一种合作关系。这种合作关系虽然可以表现为相互独立,但更多地时候是互相交互。这就是通信。就像舞台上的多个演员,他们之间是一种

    2022年6月19日
    53
  • java中打印数组的方法_Java数组方法–如何在Java中打印数组

    java中打印数组的方法_Java数组方法–如何在Java中打印数组java中打印数组的方法Anarrayisadatastructureusedtostoredataofthesametype.Arraysstoretheirelementsincontiguousmemorylocations.数组是用于存储相同类型数据的数据结构。数组将其元素存储在连续的内存位置中。InJava,arraysareo…

    2022年6月3日
    32
  • java cloneable_java.lang.Cloneable的理解「建议收藏」

    java cloneable_java.lang.Cloneable的理解「建议收藏」以前也用过这个接口,那时是直接所有的东西都自己写了,也没发现问题。最近无意间发现这个接口的实现并不是想象中的那样,所以稍微研究了下,给大家分享一下。步骤:1、建立两个简单的POJO:Teacher和Student2、Teacher类实现了Cloneable接口,重写clone方法3、在main方法中建立teacher,然后clone,比较teacher和clone出来的teacherTeacher…

    2022年10月14日
    2
  • 初笔,JAVA.HelloWorld代码详解「建议收藏」

    初笔,JAVA.HelloWorld代码详解「建议收藏」HelloWorld.java//文件名publicclassHelloWorld{  publicstaticvoidmain(String[]args){    System.out.println(“HelloWorld!!!”);}}详解:publicclassHelloWorld:class:翻译过来就叫:类,可以理解为是JAVA中一种文件的名字….

    2022年5月28日
    34

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号