aboutsummaryrefslogtreecommitdiff
path: root/template.md
diff options
context:
space:
mode:
authorSam Scholten2025-10-19 21:29:03 +1000
committerSam Scholten2025-10-19 21:29:03 +1000
commit8a2440993ce6e65b8f4b5b71a0feb3b63a9c968e (patch)
tree5e0eab5c9644a99e8d2e3398c41e20a560473ed2 /template.md
downloadacarp-marp-theme-8a2440993ce6e65b8f4b5b71a0feb3b63a9c968e.tar.gz
acarp-marp-theme-8a2440993ce6e65b8f4b5b71a0feb3b63a9c968e.zip
init
Diffstat (limited to 'template.md')
-rw-r--r--template.md70
1 files changed, 70 insertions, 0 deletions
diff --git a/template.md b/template.md
new file mode 100644
index 0000000..fab9238
--- /dev/null
+++ b/template.md
@@ -0,0 +1,70 @@
+---
+marp: true
+theme: acarp
+---
+
+<!--
+ Academic Marp (acarp) Theme Template
+
+ Available layouts:
+ - title: Cover slide with centered title
+ - layout-2col: Two-column layout for comparisons
+ - default: Single column for regular content
+
+ Available themes:
+ - acarp: Standard 16:9 aspect ratio
+ - acarp-beamer: Classic 4:3 aspect ratio for academic presentations
+-->
+
+<!-- _class: title -->
+# Title Slide
+
+Your presentation title here
+
+## Subtitle or author name
+
+---
+
+<!-- paginate: true -->
+<!-- ^ start page numbers after title slide -->
+
+### Regular Slide
+
+Regular content goes here.
+
+---
+
+### Simple Slide with List
+
+Content is left-aligned by default.
+
+- Bullet point 1
+- Bullet point 2
+- Bullet point 3
+
+---
+
+### With Images
+
+![width:400px](figs/example.png)
+
+---
+
+<!-- _class: layout-2col -->
+### Two-Column Layout
+
+<div class="left-column">
+
+Some text content on the left side.
+
+- Point 1
+- Point 2
+- Point 3
+
+</div>
+
+<div class="right-column">
+
+![width:100%](figs/example.png)
+
+</div>