Skip to content

Overleaf Writing

What is Overleaf?

Overleaf is an online platform that allows you to write fancy documents using Latex. Latex itself is a software that is build on the language TEX to create text of all sorts. If you've ever been looking for a free-to-use alternative to Microsoft Word, an easy way to imbed mathematical functions or simply a way to create nerdy-looking documents then you might want to try Latex. Luckily, in stead of going through fussy installation guids, Latex can be easily accessed via Overleaf online. For this you only need to create an account and sign into the Overleaf website. There you can directly start to create as many new proejcts as you like.

How does it work?

In order to create a project you need to go to the green button and select any of the options. Then you need to provide a name to get working. When working with Overleaf you have two main views. Normally on the left hand side you write the code of your manuscript and on the right side you are directly presented with the output after compilation. A good description of how to work with Overleaf can be taken from their own Documentation If you have problems getting started a good idea is to check out the template section and possible use one of those.
Generally, Latex uses packages with the \/usepackage command to get functions that allow you to build your document. However, there are already some in-build options that you can use.

TeX
\documentclass{article} % this is the type of the document

% here you might want to import packages via /usepackage

\begin{document} % Here you start with your writing

\chapter{Chapter 01}
Here some text about Chapter 01...
\section{Section}
This section is part of Chapter 01 but there are many opinions...
\subsection{Pro}
This sections belongs to Chapter 01 because it refers to Chapter 01
\subsection{Cons}
This sections should not belong to Chapter 01 as it does not extend on the idea.


\end{document} % Here you end your writing 

Writing your Master Thesis

In case you are caught by its beauty and want to write your Masterthesis in Latex, you're lucky to find an already existing master thesis template that can be cloned into your own project and modified there.