this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix list item overlap from tall math expressions

Tall math (sqrt of integrals, underbrace labels, nested radicals) can
exceed Typst's default em-based list spacing and visually overlap the
item above. Increase list and enum spacing to 1.0em.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

+4
+4
src/generate_mixed.py
··· 237 237 _CONTENT_TEMPLATE = ( 238 238 "#set page(width: auto, height: auto, " 239 239 "margin: (x: 10pt, y: 8pt), fill: white)\n" 240 + # Tall math (sqrt of integrals, underbrace, etc.) can exceed the default 241 + # em-based spacing and overlap adjacent list items -- give more room. 242 + "#set list(spacing: 1.0em)\n" 243 + "#set enum(spacing: 1.0em)\n" 240 244 "{body}\n" 241 245 ) 242 246