Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# 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
```