Test Typst 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 , display
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
| Name | Age | City |
| Alice | 25 | New York |
| Bob | 30 | London |
| Carol | 28 | Tokyo |
This document demonstrates basic Typst features working within the XenT theme structure.