Marp turns plain Markdown into slides. Basic rules:
---
marp: true
theme: academic-theme
size: 16:9
paginate: true
---
# Slide 1 title
content
---
# Slide 2 title
content# for the main title on a slide, ## for a subtitle line under it.
Keep them short — 5-7 words per line, max ~5 bullets per slide.
- Point one
- Point two# Key Results
| Method | Accuracy | Params |
|---|---|---|
| Baseline | 71.2% | 12M |
| **Ours** | **78.9%** | 12M |→ deck-editable.pptx에 편집 가능한 표로 렌더됩니다.
<!-- layout: figure -->
# RAG Pipeline

*출처: 논문 Figure 2*<!-- layout: image-table -->
# Key Results
| Method | Score |
|---|---|
| Baseline | 71.2% |
| **Ours** | **78.9%** |

*Table 3 in the original paper*# How It Works
<div style="display:flex; gap:2rem;">
<div>
- Point one
- Point two
</div>
<div>

</div>
</div>— default width— fixed width (Marp HTML + PPTX)
- Relative to
deck.md(e.g.samples/runs/my-run/assets/fig-001.png) - Extract from PDF:
scripts/extract_pdf_figures.sh paper.pdf assets/
Cite theories, prior findings, and borrowed statistics on the slide where they appear:
- **RAG** (Lewis et al., 2021): retrieval + generation for grounded answers
- Spence (1973) argues education signals ability to employers
- 2023년 졸업자 취업률 70.3% (교육부, 2023)Rules:
- Presenting paper authors: always full names on the title slide and in citations — e.g.
Anum Afzal, Alexander Kowsik, Rajna Fani, & Florian Matthes (2024), notAfzal et al. (2024) - Cited prior work: first author's given + family name, then
et al.if 3+ authors — e.g.Patrick Lewis et al. (2021) - Prefer
(Author, Year)at the end of the bullet; useAuthor (Year)when the author is the sentence subject - Cite only works from the paper's reference list — do not invent citations
- Figures/tables from the current paper:
*출처: Anum Afzal, Alexander Kowsik, Rajna Fani, & Florian Matthes (2024), Figure 2* - Optional final slide: condensed reference list (5–8 key sources)
<!-- 발표 시 강조할 포인트 --><!-- _class: lead -->
<!-- _footer: "https://arxiv.org/abs/XXXX.XXXXX" -->
# Full Paper Title (2024)Per-slide footer (footnote at bottom) — use on the title slide for the canonical paper URL:
<!-- _footer: "https://arxiv.org/abs/XXXX.XXXXX" -->All slides: put the same ref in deck frontmatter so HTML and PPTX show it on every page:
---
marp: true
footer: 'https://arxiv.org/abs/XXXX.XXXXX · https://aclanthology.org/YYYY.id/'
paginate: true
---In browser HTML preview, long slides scroll inside the slide while the # title and its underline stay pinned at the top (position: sticky in theme CSS). Title slides (lead) are excluded.