How to Collaboratively Write a Paper using Overleaf Latex Platform
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:
- ACM SigConf Template Overleaf
- ACM Journal Template Overleaf
- IEEE Conference template in Overleaf
- IEEE Journal template in Overleaf
- Springer Book Chapter/Conference template in Overleaf
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-
- Using your collaborators’ emails
- 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!
Latex-related Posts
You can find a comprehensive list of Latex resources in the following post:
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
- How to write an algorithm in Latex
- How to add subfigure in Latex
- Add Copyright Notice and Conference Name in IEEE Conference Template
- Preparing Tables for Publication and Documentation in Latex
- How to Write Matrix with Row/Column Labels in Latex
- How to Collaboratively Write a Paper using Overleaf Latex Platform
- Itemize, Enumerate, and To-do-list in Latex
- Latex Table for Survey in IEEE two-column format
- Line Plotting using Latex PGFPlots
- How to Create Bar Charts using Latex PGFPlots
- How to add Codes in Latex:
listings
package for code documentation - Bibliography management with Bibtex in Latex
- Creating Multiple Line plots from CSV file using Latex Tikz and PGFPlot
- How to Draw a Literature Survey Taxonomy Tree in Latex
- How to Convert Python Matplotlib Plots to Latex Plots (Easiest Way) for Academic Papers
Leave a comment