Submitting a research paper is probably one of the most happy moments in the working life career of PhD students. You’ve been dealing with a research paper for months, maybe years. And you know, clicking that “submit” button represents such a moment of relief. You just want it to be finally done, moving on to the next project and so on. But, wait a minute. The submission system claims you to do one more thing: a cover letter for the editor! Is the the paper not enough? What is that? Let me tell you. It’s a common practice in academic journals to ask authors to write a short cover letter to the editor. In this post, I share my experience writing cover letters for academic journals, along with useful tricks and tips that I’ve found along the way. I hope this will help you write a good cover letter without hassle.

The academic revision process: an attempt to achieve perfection for the best of science
© Cover letters: are they really necessary? Photo from Universitetet metro station.

What Makes a Cover Letter Excellent?

“A cover letter is your opportunity to make a great first impression on the journal editors who will be considering your research paper. It is your chance to show that you understand the focus and scope of the journal, that your research is a good fit for it, and that your paper is of high quality and relevance.”

In short, a good paper cover letter is a document that has:

  • A good structure.
  • A short and concise writing style.
  • One page and it is made with LaTeX.1

Structure

I suggest the following elements to conform the body of the cover letter for a research paper:

  1. A disclosure paragraph: This paragraph should disclose any potential conflict of interest. It should also contain a claim mentioning that the paper is original and has not been published elsewhere. If the paper is submitted to an special issue, it should also be mentioned here.
  2. A clear novelty claim: This paragraph should clearly state the novelty of the paper. Summarize the methodological and technical contributions, as well as key results (a single number is perfect).
  3. A list of contributions: This list summarizes the main contributions of the paper. Make it short and concise.
  4. A list of suggested editors: This list makes it easy for the Editor in Chief to find the right editor for your paper. Suggest relevant editors and make sure to briefly argument your suggestion based on their individual expertise.

Style

Here are a couple of additional tips regarding the style of the cover letter:

  • Use short and concise writing style (avoid giving too much context).
  • Write in the first person (from the perpective of the first author) and use present tense.

The following are non-obvious don’ts for a cover letter:

  • Don’t over sell the contributions of the paper. For example, don’t say: “This paper is a breakthrough in the field of X”, instead say: “This paper makes a significant contribution to the field of X”.
  • Don’t include references, figures, or tables (footnotes are OK).
  • Don’t repeat the same information written in the paper’s abstract.

My LaTeX Template

I’ve created a LaTeX template for writing cover letters for research papers. The template has the look and feeling of the newlfm LaTeX package (not updated since 2009), but it uses modern packages.

Here’s a screenshot of the resulting PDF file:

Overview of the template.
Overview of my paper cover template (downloadable .tex> file below).

Here is the link to the template:

To use the template, you only need to fill in the following LaTeX macros:

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
%----------------------------------------------------------------------------------------
%	YOU ONLY NEED TO FILL IN THE FOLLOWING LATEX MACROS
%----------------------------------------------------------------------------------------

% Title of the paper
\newcommand{\PaperTitle}{Paper's Title\xspace}

% Full name of the authors
\newcommand{\AuthorOne}{Author \#1\xspace}
\newcommand{\AuthorTwo}{Author \#2\xspace}
\newcommand{\AuthorThree}{Author \#3\xspace}
\newcommand{\AuthorFour}{Author \#4\xspace}

% Institution
\newcommand{\Institution}{Institution of the Authors\xspace}
\newcommand{\InstitutionAddress}{Institution Address\xspace}
\newcommand{\City}{City\xspace}
\newcommand{\Country}{Country\xspace}

% Full name of the Journal's Editor in Chief
\newcommand{\EditorInChief}{Name of Editor in Chief\xspace}

% Journal
\newcommand{\Journal}{Name of the Journal\xspace}

% Body
\newcommand{\Contribution}{X\xspace}
\newcommand{\Problem}{Y\xspace}
\newcommand{\Solution}{Z\xspace}
\newcommand{\Evaluation}{D\xspace}
\newcommand{\NoveltyClaim}{E\xspace}

% List of contributions
\newcommand{\ContributionOne}{Contribution A.\xspace}
\newcommand{\ContributionTwo}{Contribution B.\xspace}
\newcommand{\ContributionThree}{Contribution C.\xspace}
\newcommand{\ContributionFour}{Contribution D.\xspace}

% Suggested editors
\newcommand{\EditorOne}{Editor \#1\xspace}
\newcommand{\EditorOneExpertise}{A\xspace}

\newcommand{\EditorTwo}{Editor \#2\xspace}
\newcommand{\EditorTwoExpertise}{B\xspace}

\newcommand{\EditorThree}{Editor \#3\xspace}
\newcommand{\EditorThreeExpertise}{C\xspace}

Note that the date is autogenerated using the \today macro.

Examples

As with revision letters, researchers typically don’t disclose their cover letters. I guess that this is because they are considered as a second class citizen by the scientific community. When compared to the paper, the cover letter is us a formality. The effort put into them most of the time goes to waste, and only the final flawless version of the paper that is published and shared receives recognition.

Below you can look at some examples of my cover letters, corresponding to papers published in prestigious software engineering journal. Hopefully, this will give you some inspiration.

Published Research PaperPaper Cover Letter
A Comprehensive Study of Bloated Dependencies in the Maven Ecosystem :earth_americas: LinkPDF
Coverage-Based Debloating for Java Bytecode :earth_americas: LinkPDF
The Multibillion Dollar Software Supply Chain of Ethereum :earth_americas: LinkPDF

Conclusion

Crafting effective cover letters is a critical aspect of academic communication. PhD students invest time and energy in drafting cover letters that reflect the quality of the submitted research papers. As with job seeking cover letters, the goal is to convince the editor that the paper is worth going into the revision process. As someone who has made numerous cover letter, I developed my own structure and use a template which I share in this post. If you have to prepare one, don’t be discouraged; by following my clear system and template, you can produce a compelling and persuasive letter that increases your chances of success (without spending too much time into it).

Footnotes

  1. You may disagree with me in this regards, however, all serious researchers know that LaTeX is the best tool for preparing professional documents.