quarto-dev / quarto

Quarto open-source scientific and technical publishing system
https://quarto.org
GNU Affero General Public License v3.0
280 stars 19 forks source link

Typst format uses same symbols in nested bullet lists #456

Closed wangzk closed 3 weeks ago

wangzk commented 3 weeks ago

The typst format does not produce correct nested list: the symbols before items on different levels are same. In the other formats (like pdf), the symbols are different.

---
title: Test Document
---

* Level 1
  + Level 2
    - Level 3 
* Level 1
  + Level 2
    - Level 3 
* Level 1

The following is the pdf file produced by typst:

image

The symbols before each level are same.

The following is the pdf file produced by latex:

image

The default behavior of nested bullet lists in typst (https://typst.app/docs/reference/model/list/) also uses different symbols on different levels:

image
cscheid commented 3 weeks ago

I can't reproduce that:

image

Quarto doesn't do anything special here, so I think what's going on is that you're running an older version of Quarto, which bundled an older version of Typst, which didn't have different symbols for different list nesting. I'm going to go ahead and close this one, but feel free to reopen if you can provide a reproducible example using Quarto 1.5.39 or later.