Skip to content
Snippets Groups Projects
README.md 1008 B
Newer Older
# Intermediate Research Software Development

* [Curriculum](https://carpentries-incubator.github.io/python-intermediate-development/)

# Past Workshops

# Making Slides with Markdown/pandoc via LaTeX beamer

The Markdown files are compiled with pandoc. In the background LaTeX with the beamer package is used.
The style is implemented in the [template](src/beamer-template.tex).
The [Makefile](Makefile) can be used to produce two files:

1. `make` produces the presentations in the directory [pdfs](pdfs/).

## YAML header

In the header the following information should be given (example for episode 00):

```md
---
episode: 0
title: Setting the Scene
subtitle: Intermediate Research Software Development
author: Christian Knüpfer, Eckhard Kadasch, Frank Löffler, and Philipp Schäfer
date: 2025-03-03
---
```

## Frames

Frames can be produced by a first level heading in the markdown:

```md
# Frame Title
```

Each second level heading will create a block on the frame:

```md
## Block Title
```