Quarto Extension
2025-10-10
This document demonstrates various Quarto markdown elements to showcase the theming capabilities of Mickaël Canouil’s brand extension.
Here’s some bold text, italic text, and bold italic text. You can also use inline code within paragraphs.
code
def fibonacci(n):
"""Generate Fibonacci sequence up to n terms."""
if n <= 0:
return []
elif n == 1:
return [0]
elif n == 2:
return [0, 1]
sequence = [0, 1]
for i in range(2, n):
sequence.append(sequence[i-1] + sequence[i-2])
return sequence
# Example usage
fib_numbers = fibonacci(10)
print(f"First 10 Fibonacci numbers: {fib_numbers}")“The best way to predict the future is to invent it.”
— Alan Kay
This is a longer blockquote that spans multiple lines to demonstrate how the brand theming affects quote styling. It includes various formatting elements like bold text and italic text.
Note
This is a note callout. Use it to highlight important information that readers should pay attention to.
Warning
This is a warning callout. Use it to alert readers about potential issues or important considerations.
Tip
This is a tip callout. Use it to provide helpful suggestions or best practices.
Important
This is an important callout. Use it for critical information that must not be overlooked.
Caution
This is a caution callout. Use it to warn about potential risks or problems.
| Feature | HTML | Typst | Reveal.js |
|---|---|---|---|
| Typography | ✓ | ✓ | ✓ |
| Colors | ✓ | ✓ | ✓ |
| Layout | ✓ | ✓ | ✓ |
| Interactive | ✓ | ✗ | ✓ |
| Language | Paradigm | Year | Key Features |
|---|---|---|---|
| Python | Multi-paradigm | 1991 | Simple syntax, extensive libraries |
| R | Functional, procedural | 1993 | Statistical computing, data analysis |
| JavaScript | Multi-paradigm | 1995 | Web development, event-driven |
| Rust | Systems | 2010 | Memory safety, performance |
The quadratic formula is \(x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}\) and Euler’s identity states that \(e^{i\pi} + 1 = 0\).
The probability density function of a normal distribution is:
\[ f(x|\mu,\sigma^2) = \frac{1}{\sqrt{2\pi\sigma^2}} e^{-\frac{(x-\mu)^2}{2\sigma^2}} \]
A system of linear equations can be represented as:
\[\begin{align} ax + by &= c \\ dx + ey &= f \end{align}\]
See the Typography section for text formatting examples, or check out the Code Blocks section for syntax highlighting.
Figure 1: This is a placeholder for an image that would showcase how the brand theming affects figure styling. In a real document, you would include actual images here.
This document demonstrates various Quarto markdown elements that benefit from the brand theming provided by this extension. The theming affects:
The brand extension ensures consistent visual identity across all supported output formats (HTML, Typst, and Reveal.js).