Overleaf is a free, browser-based LaTeX editor. You write LaTeX code on the left and see the compiled PDF on the right โ no software installation required.
Go to overleaf.com and click Register. You can sign up with your university email (Google / ORCID also work). The free plan is sufficient for this course.

โฒ Overleaf homepage โ click Sign up (top right) to create a free account
After logging in, click New Project โ Blank Project. Give it a name like ECON6083 Final Project.

โฒ Click New Project โ Blank Project to start from scratch

โฒ Enter a project name, then click Create
The interface has three panels:
The green Compile button (or Ctrl+Enter / Cmd+Enter) re-generates the PDF from your code.

โฒ The Overleaf editor: file tree (left) ยท LaTeX source (centre) ยท PDF preview (right). Click Recompile to update the PDF.
We provide a ready-made LaTeX template for the final project report. Use this template โ it already has the correct formatting, sections, and bibliography style.
Download the template file: report.tex
amsmath, graphicx, natbib, booktabs), title/author placeholders, and section scaffolding.
In Overleaf, click New Project โ Upload Project and upload the report.tex file (or zip it first if you have multiple files).
Alternatively, paste the template contents directly into a blank project's main.tex.

โฒ Log in or register, then use New Project โ Upload Project to upload report.tex
Press Compile. You should see a formatted PDF on the right. If there are errors, check the Logs panel (bottom of the editor) โ it shows exactly which line caused the problem.

โฒ After uploading and compiling, the PDF preview shows your formatted report
Every LaTeX document follows this skeleton:
% Preamble โ settings and packages
\documentclass[12pt]{article}
\usepackage{amsmath} % math
\usepackage{graphicx} % figures
\usepackage{natbib} % citations
\usepackage{booktabs} % nice tables
\title{My ECON6083 Final Project}
\author{Your Name}
\date{\today}
\begin{document}
\maketitle
\tableofcontents
\newpage
% Your content goes here
\end{document}
| What you want | LaTeX command | Output |
|---|---|---|
| Bold text | \textbf{important} | important |
| Italic text | \textit{variable} | variable |
| Section heading | \section{Introduction} | 1. Introduction |
| Subsection | \subsection{Data} | 1.1 Data |
| New paragraph | Leave a blank line | Indented paragraph |
| Line break | \\ | New line |
| Footnote | \footnote{text here} | Footnote at page bottom |
LaTeX is famous for beautiful math. There are two modes:
% Inline math โ inside a sentence
The estimate is $\hat{\beta} = 2.3$ with standard error $0.4$.
% Display math โ on its own line, numbered
\begin{equation}
Y_i = \alpha + \beta D_i + \gamma X_i + \varepsilon_i
\end{equation}
% Display math โ unnumbered
\[
\hat{\tau}^{DML} = \frac{1}{n}\sum_{i=1}^{n} \tilde{Y}_i \tilde{D}_i
\]
| Symbol / Structure | LaTeX |
|---|---|
| Fraction | \frac{numerator}{denominator} |
| Subscript | Y_{it} โ Yit |
| Superscript | X^{2} โ Xยฒ |
| Summation | \sum_{i=1}^{n} |
| Greek letters | \alpha \beta \gamma \delta \epsilon \theta \lambda \mu \sigma \tau |
| Hat (estimate) | \hat{\beta} |
| Bar (average) | \bar{Y} |
| Tilde (residual) | \tilde{Y} |
| Expected value | \mathbb{E}[Y] |
| Infinity | \infty |
| Approximately | \approx |
| Geq / Leq | \geq \leq |
| Indicator function | \mathbf{1}(\cdot) or \mathbb{1} |
For regression result tables, use the booktabs package (already in the template):
\begin{table}[htbp]
\centering
\caption{DML Estimates: Effect of 401(k) on Net Financial Assets}
\begin{tabular}{lccc}
\toprule
Method & Estimate & Std. Error & 95\% CI \\
\midrule
OLS & 9,416 & (523) & [8,391, 10,441] \\
Lasso DML & 8,981 & (898) & [7,221, 10,741] \\
RF DML & 9,204 & (1,012) & [7,221, 11,187] \\
\bottomrule
\end{tabular}
\label{tab:dml}
\end{table}
& to separate columns and \\ to end a row. \toprule, \midrule, \bottomrule give you professional-looking horizontal lines (from booktabs).
\begin{figure}[htbp]
\centering
\includegraphics[width=0.75\textwidth]{event_study.png}
\caption{Event Study: Dynamic Treatment Effects (CS2021)}
\label{fig:event_study}
\end{figure}
% In your text:
As shown by \citet{athey2021policy}, policy learning...
Results are consistent with the literature \citep{callaway2021diff}.
% At the end of your document (before \end{document}):
\bibliographystyle{aer} % AER style
\bibliography{references} % reads references.bib
Your references.bib file contains entries like:
@article{athey2021policy,
author = {Athey, Susan and Wager, Stefan},
title = {Policy Learning with Observational Data},
journal = {Econometrica},
year = {2021},
volume = {89},
pages = {133--161}
}
% Basic OLS
\[
Y_{it} = \alpha_i + \lambda_t + \beta D_{it} + \varepsilon_{it}
\]
% DML Partially Linear Regression
\[
Y_i = \theta D_i + g(X_i) + \varepsilon_i, \quad D_i = m(X_i) + \eta_i
\]
% ATT(g,t) from Callaway-Sant'Anna
\[
ATT(g,t) = \mathbb{E}\bigl[Y_t(1) - Y_t(0) \mid G_g = 1\bigr]
\]
% Doubly robust score
\[
\hat{\Gamma}_i = \hat{\tau}(X_i)
+ \frac{W_i\bigl(Y_i - \hat{\mu}_1(X_i)\bigr)}{\hat{e}(X_i)}
- \frac{(1-W_i)\bigl(Y_i - \hat{\mu}_0(X_i)\bigr)}{1 - \hat{e}(X_i)}
\]
\begin{align}
\hat{\beta}^{TWFE}
&= \sum_{k,j} s_{kj} \cdot \hat{\beta}_{kj}^{2\times 2} \\
&= \underbrace{0.3(4)}_{\text{Early vs Never}}
+ \underbrace{0.3(2)}_{\text{Late vs Never}}
+ \underbrace{0.2(-2)}_{\text{Forbidden!}}
= 2.2
\end{align}
\begin{table}[htbp]
\centering
\caption{Effect of Green Finance Zones on Patent Applications}
\begin{tabular}{lcccc}
\toprule
& (1) TWFE & (2) CS2021 & (3) DML-DiD & (4) SCM \\
\midrule
ATT & 0.12** & 0.21*** & 0.19*** & 0.22** \\
& (0.06) & (0.05) & (0.04) & (0.09) \\
\addlinespace
Observations & 3,200 & 3,200 & 3,200 & 320 \\
Covariates & Linear & DR & ML & None \\
\bottomrule
\end{tabular}
\begin{tablenotes}
\small \textit{Note:} Standard errors in parentheses.
*** p<0.01, ** p<0.05, * p<0.1.
\end{tablenotes}
\label{tab:main}
\end{table}
\textbf not \textbold. Add the required \usepackage{...} in the preamble.
_, ^, \alpha) outside of math mode.$...$ or \[...\]. E.g. write $Y_{it}$ not Y_{it}.
\includegraphics{...} matches exactly.
[h] (here), [t] (top), [b] (bottom), or [H] (force here, requires \usepackage{float}).
references.bib fileIn Overleaf, click New File and name it references.bib. Paste your BibTeX entries here.
\bibliography{references} to your .tex fileJust before \end{document}, add:
\bibliographystyle{aer}
\bibliography{references}
Press Compile, wait for it to finish, then press Compile again. The second pass resolves citation cross-references.
\textbf{bold}\textit{italic}\footnote{note}\noindent\section{Title}\subsection{Sub}\newpage\tableofcontents
$inline math$\[ display math \]\frac{a}{b}\hat{\beta}, \bar{Y}
\begin{tabular}{lcc}\toprule \midrule \bottomrule& column separator\\ row end
\includegraphics[width=.8\textwidth]{fig.png}\caption{...}\label{fig:name}
\cite{key}\citet{key} (Author, year)\citep{key} (Author, year)\bibliography{refs}
\usepackage{amsmath}\usepackage{graphicx}\usepackage{booktabs}\usepackage{natbib}
\alpha \beta \gamma \delta\epsilon \theta \lambda \mu\sigma \tau \pi \rho\Gamma \Delta \Lambda \Sigma