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¶
- Title Slides - Opening and closing slides
- Section Headers - Organizing content into sections
- Bullet Lists - Key highlights and priorities
- Line Charts - Revenue trend visualization
- Data Tables - Quarterly breakdown
- Two-Column Layout - Side-by-side content comparison
- Corporate Theme - Professional business styling
Generating the Presentation¶
Customization¶
Update Financial Data¶
Edit the chart and table data:
Add More Slides¶
Insert additional slides between existing ones:
Use External Data¶
Replace inline data with CSV/JSON files:
Use Cases¶
- Quarterly business reviews
- Investor presentations
- Board meetings
- Financial reporting
- Performance dashboards
Next Steps¶
- Explore other examples
- Learn about data binding
- Read the layout reference