plot(cars)

Yosuke Abe
OSIPP
July 23, 2024
Here is an abstract.
Keywords: Keyword 1, Keyword 2, Keyword 3…
You can plot a figure like Figure 1
You can also write mathematical expressions like Equation 1.
\[ Y_{it} = \delta D_{it} + u_i + \varepsilon_{it}, \quad t = 1, 2, \ldots, T \tag{1}\]
---
title: Typst demo
author:
- name: Yosuke Abe
affiliation: OSIPP
abstract: |
Here is an abstract.
date: 2024-07-23
date-format: long
lang: en
format:
typst:
keep-typ: true
---
**Keywords:** Keyword 1, Keyword 2, Keyword 3...
# Section 1
You can plot a figure like @fig-cars
```{r}
#| label: fig-cars
#| fig-cap: "Plot of cars"
#| echo: true
plot(cars)
```
{{< pagebreak >}}
# Section 2
## Subsection
You can also write mathematical expressions like @eq-panel.
$$
Y_{it} = \delta D_{it} + u_i + \varepsilon_{it}, \quad t = 1, 2, \ldots, T
$$ {#eq-panel}