Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Slides

Johns Hopkins University

Lecture slides are posted here each week. Each module covers a different topic in macroeconomic modeling.

Building Slides Locally

Slides are built with Quarto. To build or preview slides on your own computer:

1. Install Quarto

Download and install Quarto from quarto.dev/docs/get-started.

Alternatively, use a package manager:

# macOS (Homebrew)
brew install quarto

# Windows (Chocolatey)
choco install quarto

# Linux (Debian/Ubuntu) - download .deb from quarto.dev
sudo dpkg -i quarto-*.deb

Verify the installation:

quarto --version

2. Preview Slides

From the project root directory:

uv run quarto preview slides/m03/intertemporal-choice-slides.qmd

This opens a live preview in your browser that updates as you edit.

3. Build All Slides

To build all slides to HTML:

uv run quarto render slides/

The output files are placed alongside the source .qmd files.