3 minute read

We often collaboratively write manuscripts using Latex and Overleaf the best online Latex platform. In this tutorial, I will discuss the best strategies to collaboratively work in a Overleaf document.

Selecting a Journal/Conference template

There are tons of templates available in the Overleaf Gallery. For writing a paper, we typically use a journal or conference template. For engineering students, the most common templates are:

Apart from these templates, you can download the zip file from an official conference or journal website and upload as a new project in Overleaf. However, typically, almost any journal or conference template can be found in the Overleaf Academic Journal Gallery.

Sharing the Document

After creating a new document using selected template, you need to share the document with your peers or collaborators. You can do it by clicking on share on the right top after entering the project. Now, a dialog box will pop up on your screen and you can share the project in two ways-

  1. Using your collaborators’ emails
  2. Sharing the edit or view link after clicking on Turn on link sharing appered on the dialog box.

Using package todonotes

Now you can use the package todonotes to comment on the document in a better way. For example, I want to use comments in the margin area, I can use the following code:

\usepackage{todonotes}
\newcommand{\Authorone}[1]{\todo[color=yellow!10, linecolor=black!50!yellow]{\textbf{AO:} #1}}

It will create a new command \Authorone and when using the command like the following will create a yellow background comment box and comment on top in the margin area.

\Authorone{This is author one's comment}

For a comment box inside the document paragraph area, you can use an extra argument inline, which is as follows:

\newcommand{\TODO}[1]{\todo[color=green!10, linecolor=black!50!green, inline]{\textbf{TODO:} #1}}

Feel free to check the outputs in this Example Overleaf Document. The code of creating commands are put in between lines $66-69$. The comments are in line $260$, $266$, and $273$.

Using the Chat

You can send messages to other collaborators by clicking chat button which is available on the right top. You can chat instantly like you do in messenger, whatsapp, or other instant messaging platforms.

Using the History

The history button is also available on the right top where you can find all the changes made to the document by different authors. however, in the free version, you can find history of only last $24$ hours.

That’s all for today. Have a good day. Cheers!

You can find a comprehensive list of Latex resources in the following post:

Latex Resources in a Nutshell

If you are a new Latex user, check out this post: 20 Most Common Mistakes Made by New Latex Users

You can find all Latex oriented posts of mine in: https://shantoroy.com/categories/#latex

Leave a comment