68 lines
982 B
YAML
68 lines
982 B
YAML
---
|
|
# Presentation Metadata
|
|
title: "Presentation Title"
|
|
author: "Author Name"
|
|
date: "Date"
|
|
institute: "Institution Name"
|
|
|
|
# Beamer Theme
|
|
theme: "Madrid" # Options: Madrid, Berlin, Copenhagen, Dresden
|
|
colortheme: "default" # Options: default, dolphin, beaver, crane
|
|
fonttheme: "default" # Options: default, serif, structurebold
|
|
|
|
# PDF Settings
|
|
aspectratio: 169 # 16:9 aspect ratio (43 for 4:3)
|
|
lang: en-GB
|
|
|
|
# Code Highlighting
|
|
highlight-style: tango # Options: tango, pygments, kate, monochrome
|
|
|
|
# Beamer Options
|
|
navigation: horizontal # Horizontal navigation symbols
|
|
---
|
|
|
|
# Introduction
|
|
|
|
## Slide Title
|
|
|
|
- Point 1
|
|
- Point 2
|
|
- Point 3
|
|
|
|
## Another Slide
|
|
|
|
Content here.
|
|
|
|
# Main Section
|
|
|
|
## Code Example
|
|
|
|
```python
|
|
def hello_world():
|
|
print("Hello, World!")
|
|
```
|
|
|
|
## Lists
|
|
|
|
**Incremental reveal:**
|
|
|
|
::: incremental
|
|
|
|
- First item
|
|
- Second item
|
|
- Third item
|
|
|
|
:::
|
|
|
|
# Conclusion
|
|
|
|
## Summary
|
|
|
|
- Key point 1
|
|
- Key point 2
|
|
- Key point 3
|
|
|
|
## Thank You
|
|
|
|
Questions?
|