Initial commit
This commit is contained in:
95
skills/pandoc/assets/templates/presentation-revealjs.yaml
Normal file
95
skills/pandoc/assets/templates/presentation-revealjs.yaml
Normal file
@@ -0,0 +1,95 @@
|
||||
---
|
||||
# Presentation Metadata
|
||||
title: "Presentation Title"
|
||||
author: "Author Name"
|
||||
date: "Date"
|
||||
|
||||
# Reveal.js Theme
|
||||
theme: black # Options: black, white, league, beige, sky, night, serif, simple, solarized
|
||||
transition: slide # Options: none, fade, slide, convex, concave, zoom
|
||||
|
||||
# Slide Settings
|
||||
slideNumber: true # Show slide numbers
|
||||
controls: true # Show navigation controls
|
||||
progress: true # Show progress bar
|
||||
history: true # Enable browser history
|
||||
|
||||
# Code Highlighting
|
||||
highlight-style: monokai # Options: monokai, zenburn, github, atom-one-dark
|
||||
|
||||
# Background
|
||||
background-color: "#1e1e1e"
|
||||
|
||||
# Responsive Design
|
||||
width: 1280
|
||||
height: 720
|
||||
margin: 0.1
|
||||
---
|
||||
|
||||
# Introduction {background-color="#2E3440"}
|
||||
|
||||
## Slide Title
|
||||
|
||||
- Point 1
|
||||
- Point 2
|
||||
- Point 3
|
||||
|
||||
## Another Slide {background-image="image.jpg"}
|
||||
|
||||
Content with background image.
|
||||
|
||||
# Main Section
|
||||
|
||||
## Code Example
|
||||
|
||||
```python
|
||||
def fibonacci(n):
|
||||
if n <= 1:
|
||||
return n
|
||||
return fibonacci(n-1) + fibonacci(n-2)
|
||||
```
|
||||
|
||||
## Two Column Layout
|
||||
|
||||
::::: {.columns}
|
||||
|
||||
:::: {.column width="50%"}
|
||||
**Left Column**
|
||||
|
||||
- Item 1
|
||||
- Item 2
|
||||
::::
|
||||
|
||||
:::: {.column width="50%"}
|
||||
**Right Column**
|
||||
|
||||
- Item A
|
||||
- Item B
|
||||
::::
|
||||
|
||||
:::::
|
||||
|
||||
## Fragment Animation
|
||||
|
||||
::: {.fragment}
|
||||
Fade in first
|
||||
:::
|
||||
|
||||
::: {.fragment .fade-up}
|
||||
Fade up second
|
||||
:::
|
||||
|
||||
# Conclusion
|
||||
|
||||
## Summary {background-color="#4C566A"}
|
||||
|
||||
- Key point 1
|
||||
- Key point 2
|
||||
- Key point 3
|
||||
|
||||
## Thank You
|
||||
|
||||
**Contact:**
|
||||
|
||||
- Email: email@example.com
|
||||
- Website: example.com
|
||||
Reference in New Issue
Block a user