Skip to content

Quarterly Results Example

Complete example of a corporate quarterly financial results presentation.

Overview

This example demonstrates a typical quarterly business review presentation with financial data, charts, and strategic content.

File: examples/quarterly-results.yaml

Schema

presentation:
  title: "Q4 2025 Financial Results"
  theme: "corporate"
  slides:
    - layout: title
      title: "Q4 2025 Financial Results"
      subtitle: "Year-End Review and Outlook"

    - layout: section_header
      text: "Executive Summary"

    - layout: bullet_list
      title: "Key Highlights"
      bullets:
        - "Revenue: $125M (+15% YoY)"
        - "Profit margin: 22%"
        - "Customer growth: +1.2M users"
        - "Market share: 18% (up from 15%)"

    - layout: chart
      title: "Revenue Trend"
      chart:
        type: line
        data:
          labels: ["Q1 2024", "Q2 2024", "Q3 2024", "Q4 2024", "Q1 2025", "Q2 2025", "Q3 2025", "Q4 2025"]
          values: [95, 105, 115, 108, 110, 118, 122, 125]
        x_axis_label: "Quarter"
        y_axis_label: "Revenue ($M)"

    - layout: section_header
      text: "Financial Performance"

    - layout: table
      title: "Quarterly Breakdown"
      table:
        data:
          - ["Metric", "Q1", "Q2", "Q3", "Q4"]
          - ["Revenue ($M)", "110", "118", "122", "125"]
          - ["Operating Margin", "18%", "20%", "21%", "22%"]
          - ["Net Income ($M)", "19.8", "23.6", "25.6", "27.5"]
        header_row: true

    - layout: two_column
      title: "Growth Drivers"
      left:
        type: bullet_list
        bullets:
          - "Enterprise sales up 35%"
          - "New product launches"
          - "International expansion"
      right:
        type: bullet_list
        bullets:
          - "Customer retention: 95%"
          - "Average deal size: +20%"
          - "Sales cycle: -15%"

    - layout: section_header
      text: "2026 Outlook"

    - layout: bullet_list
      title: "Strategic Priorities"
      bullets:
        - "Expand into APAC markets"
        - "Launch AI-powered features"
        - "Strengthen partner ecosystem"
        - "Invest in R&D (target: 15% of revenue)"

    - layout: title
      title: "Thank You"
      subtitle: "Questions & Discussion"

Features Demonstrated

  1. Title Slides - Opening and closing slides
  2. Section Headers - Organizing content into sections
  3. Bullet Lists - Key highlights and priorities
  4. Line Charts - Revenue trend visualization
  5. Data Tables - Quarterly breakdown
  6. Two-Column Layout - Side-by-side content comparison
  7. Corporate Theme - Professional business styling

Generating the Presentation

# From project root
slidegen build examples/quarterly-results.yaml -o quarterly-results.pptx

Customization

Update Financial Data

Edit the chart and table data:

chart:
  data:
    values: [95, 105, 115, 108, 110, 118, 122, 125]  # Update with your data

Add More Slides

Insert additional slides between existing ones:

- layout: bullet_list
  title: "Additional Metrics"
  bullets:
    - "Your metric 1"
    - "Your metric 2"

Use External Data

Replace inline data with CSV/JSON files:

chart:
  data:
    source: data/quarterly-revenue.csv
    format: csv

Use Cases

  • Quarterly business reviews
  • Investor presentations
  • Board meetings
  • Financial reporting
  • Performance dashboards

Next Steps