Markdown Comparison Document

Introduction

This is a test document written in Typst to verify the integration with XenT theme.

Mathematical Expressions

Typst has excellent support for mathematical notation: inline E = mc^2, display

f(x) = \int_{-\infty}^{\infty} \hat{f}(\xi) e^{2\pi i \xi x} d\xi

Code Blocks

def fibonacci(n):
    if n <= 1:
        return n
    return fibonacci(n-1) + fibonacci(n-2)

print(fibonacci(10))

Lists and Structure

  • First item
  • Second item
    • Nested item
    • Another nested item
  • Third item
NameAgeCity
Alice25New York
Bob30London
Carol28Tokyo

This document demonstrates basic Typst features working within the XenT theme structure.