Overleaf is an online LaTeX-editor which can be used to write assignments and manuscripts. By using a LaTeX-editor you can build the document structure yourself, which makes it easy to publish your document in several formats. It's also easy to work with formulas, tables and code snippets in LaTeX.
Overleaf is free to use, but the free version has some limitations compared to the full version. BI Norwegian Business School has no institutional license at the moment. Read and learn more about LaTeX.
RegisterGo to Overleaf to create a user account. Log in when the account is created. Getting started with OverleafWe do not have courses in Overleaf, but you can get started by looking at the Overleaf documentation pages. |
You can connect Zotero to Overleaf to work with citations and reference lists. We will show you how this can be done using the free version of Overleaf (Zotero can be fully integrated if you're using the Premium version).
We recommend to install the add-in Better BibTex in Zotero (See installation instructions). This add-in can be used to make your own citation keys which are more stable than the ones auto-generated in Zotero.
In this example I have set the citation key to be auth.lower + year. The citation now consist of the first authors' surname in small letters followed by the publication year. You can chose your own citation keys and you can read more about his in the Better BibTex documentation.
You will need to make a .bib-file of your Zotero library to use it in the free version of Overleaf (you have to install Better BibTex to make this work, please see instructions above).
Now we're ready to work in Overleaf. The first thing you'll need to do is to start a new project. Then you import the .bib-file containing your references.
You must import the package biblatex and link to your .bib-file to use the imported references in your Overleaf-document. Take a look at the documentation in Overleaf for more details.
Copy and paste the following code lines to the beginning of your document:
% Use biblatex for references - change style= as appropriate \usepackage[style=apa]{biblatex} \addbibresource{YourFileName.bib}
The line \usepackage imports the package biblatex. We can choose to use the APA style with the line style=apa. It's possible to use other styles, but APA is the recommended style to use at BI Norwegian Business School.
The line \addbibresource links to the the .bib-file with your imported references (choose the name of your own .bib-file in the curly braces).
Copy the following line to the end of your document to generate the references:
\printbibliography
This line is usually placed just before the line \end{document}.
Now everything is set up and you can start to insert citaitons in your document. You can format the citations in different ways; the most common formats are listed in the table below. The reference list will be updated every time you run Recompile.
Input LaTex | Example | Output |
\parencite{Citation Key] | \parencite{dai2019} | (Dai et al., 2019) |
\cite{Citation Key] | \cite{dai2019} | Dai et al., 2019 |
\textcite{Citation Key] | \textcite{dai2019} | Dai et. al (2019) |
\citeauthor{Citation Key] | \citeauthor{dai2019} | Dai et. al |
\parencite*{Citation Key] | \parencite*{dai2019} | (2019) |