Quarto Presentation Template

Modern slides with code, diagrams, and math

Your Name

February 28, 2026

Features

This template includes everything you need for technical presentations:

  • Modern styling with Inter font
  • Syntax-highlighted code blocks
  • Mermaid diagrams
  • LaTeX math equations
  • Responsive tables
  • Callout boxes
  • Speaker notes

Code Blocks

import pandas as pd
import matplotlib.pyplot as plt

# Load and process data
df = pd.read_csv("data.csv")
summary = df.groupby("category").agg({
    "value": ["mean", "std", "count"]
})

# Visualize results
summary.plot(kind="bar", figsize=(10, 6))
plt.title("Category Summary")
plt.tight_layout()
plt.savefig("output.png")

Data Pipeline

flowchart LR
    A[Source Data] --> B[Extract]
    B --> C[Transform]
    C --> D[Load]
    D --> E[(Data Warehouse)]
    E --> F[Analytics]
    E --> G[Dashboards]

Sequence Diagram

sequenceDiagram
    participant U as User
    participant A as API
    participant D as Database

    U->>A: Request data
    A->>D: Query
    D-->>A: Results
    A-->>U: JSON response

Mathematics

Inline equations work naturally: \(E = mc^2\)

Display equations for complex formulas:

\[ \mathcal{L} = -\frac{1}{4}F_{\mu\nu}F^{\mu\nu} + \bar{\psi}(i\gamma^\mu D_\mu - m)\psi \]

\[ P(A|B) = \frac{P(B|A) \cdot P(A)}{P(B)} \]

Two Columns

Benefits

  • Side-by-side comparisons
  • Text alongside visuals
  • Efficient use of space
  • Clear organization

Metrics

Metric Value
Users 12,450
Sessions 45,230
Conversion 3.2%
Revenue $84K

Callouts

Note

Callouts help important information stand out from the rest of your content.

Keyboard Shortcuts

Press F for fullscreen, O for overview, S for speaker notes.

Warning

Always test your presentation in the browser you’ll use for presenting.

Step-by-Step Reveal

Content can appear incrementally:

  • First, introduce your concept
  • Then, add supporting details
  • Finally, summarize key points

This keeps your audience focused on one idea at a time.

Comparison Table

Feature Basic Pro Enterprise
Projects 3 25 Unlimited
Storage 1 GB 50 GB 500 GB
API Access - Limited Full
Support Community Email Dedicated
SSO - - Yes

Images

Sample visualization from Unsplash

Quotes

The best way to predict the future is to invent it.

— Alan Kay

Use blockquotes for citations, testimonials, or emphasis.

Get Started

Quick Setup

  1. Click Use this template on GitHub
  2. Clone your repository locally
  3. Edit content/index.qmd
  4. Run make devel to preview
  5. Run make deploy to publish

Resources